diff options
author | Martin Storsjö | 2010-06-01 07:46:23 +0000 |
---|---|---|
committer | Martin Storsjö | 2010-06-01 07:46:23 +0000 |
commit | 27241cbffe180fc92f9f519c6ea7957fc4b3b0c9 (patch) | |
tree | 7076509cac1a6aec2ff053b1a95fe8eab7b99465 /libavformat/file.c | |
parent | 3d9408f4a7129ba6fb06f838afa5663c5c73075d (diff) |
Declare the url_write buffer parameter as const
Originally committed as revision 23401 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat/file.c')
-rw-r--r-- | libavformat/file.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/file.c b/libavformat/file.c index 8873d5fcaf..d6ba1fa362 100644 --- a/libavformat/file.c +++ b/libavformat/file.c @@ -64,7 +64,7 @@ static int file_read(URLContext *h, unsigned char *buf, int size) return read(fd, buf, size); } -static int file_write(URLContext *h, unsigned char *buf, int size) +static int file_write(URLContext *h, const unsigned char *buf, int size) { int fd = (intptr_t) h->priv_data; return write(fd, buf, size); |