diff options
author | Falk Hüffner <mellum@users.sourceforge.net> | 2004-03-24 23:32:48 +0000 |
---|---|---|
committer | Falk Hüffner <mellum@users.sourceforge.net> | 2004-03-24 23:32:48 +0000 |
commit | 7906085fcc33feb5a0c617f5e01065bb9d0caa86 (patch) | |
tree | 830c3feb8c2c6333c5581ab5ae54d06ff267cc7d /libavformat/file.c | |
parent | d957696f173ab3c9f222ab097669ed8f0b3951c2 (diff) | |
download | ffmpeg-7906085fcc33feb5a0c617f5e01065bb9d0caa86.tar.gz |
warning patrol
Originally committed as revision 2925 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat/file.c')
-rw-r--r-- | libavformat/file.c | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/libavformat/file.c b/libavformat/file.c index 83f2e42ae1..00837c8fbb 100644 --- a/libavformat/file.c +++ b/libavformat/file.c @@ -50,26 +50,26 @@ static int file_open(URLContext *h, const char *filename, int flags) fd = open(filename, access, 0666); if (fd < 0) return -ENOENT; - h->priv_data = (void *)fd; + h->priv_data = (void *)(size_t)fd; return 0; } static int file_read(URLContext *h, unsigned char *buf, int size) { - int fd = (int)h->priv_data; + int fd = (size_t)h->priv_data; return read(fd, buf, size); } static int file_write(URLContext *h, unsigned char *buf, int size) { - int fd = (int)h->priv_data; + int fd = (size_t)h->priv_data; return write(fd, buf, size); } /* XXX: use llseek */ static offset_t file_seek(URLContext *h, offset_t pos, int whence) { - int fd = (int)h->priv_data; + int fd = (size_t)h->priv_data; #ifdef CONFIG_WIN32 return _lseeki64(fd, pos, whence); #else @@ -79,7 +79,7 @@ static offset_t file_seek(URLContext *h, offset_t pos, int whence) static int file_close(URLContext *h) { - int fd = (int)h->priv_data; + int fd = (size_t)h->priv_data; return close(fd); } @@ -106,19 +106,19 @@ static int pipe_open(URLContext *h, const char *filename, int flags) #if defined(CONFIG_WIN32) || defined(CONFIG_OS2) || defined(__CYGWIN__) setmode(fd, O_BINARY); #endif - h->priv_data = (void *)fd; + h->priv_data = (void *)(size_t)fd; return 0; } static int pipe_read(URLContext *h, unsigned char *buf, int size) { - int fd = (int)h->priv_data; + int fd = (size_t)h->priv_data; return read(fd, buf, size); } static int pipe_write(URLContext *h, unsigned char *buf, int size) { - int fd = (int)h->priv_data; + int fd = (size_t)h->priv_data; return write(fd, buf, size); } |