diff options
author | Martin Storsjö <martin@martin.st> | 2010-06-01 07:46:23 +0000 |
---|---|---|
committer | Martin Storsjö <martin@martin.st> | 2010-06-01 07:46:23 +0000 |
commit | 27241cbffe180fc92f9f519c6ea7957fc4b3b0c9 (patch) | |
tree | 7076509cac1a6aec2ff053b1a95fe8eab7b99465 /libavformat/udp.c | |
parent | 3d9408f4a7129ba6fb06f838afa5663c5c73075d (diff) | |
download | ffmpeg-27241cbffe180fc92f9f519c6ea7957fc4b3b0c9.tar.gz |
Declare the url_write buffer parameter as const
Originally committed as revision 23401 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat/udp.c')
-rw-r--r-- | libavformat/udp.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/udp.c b/libavformat/udp.c index a11f4c37d8..0ec24cd4e5 100644 --- a/libavformat/udp.c +++ b/libavformat/udp.c @@ -456,7 +456,7 @@ static int udp_read(URLContext *h, uint8_t *buf, int size) return len; } -static int udp_write(URLContext *h, uint8_t *buf, int size) +static int udp_write(URLContext *h, const uint8_t *buf, int size) { UDPContext *s = h->priv_data; int ret; |