]> git.sesse.net Git - ffmpeg/blobdiff - libavformat/libnut.c
Remove a few occurences of "long long" from the libraries.
[ffmpeg] / libavformat / libnut.c
index 4a9a21a7668b4ca9d84caadb70d785dd684815cf..92623ed45230dc0d24c76f0d376594d13a2efc73 100644 (file)
@@ -179,7 +179,7 @@ static size_t av_read(void * h, size_t len, uint8_t * buf) {
     return avio_read(bc, buf, len);
 }
 
-static off_t av_seek(void * h, long long pos, int whence) {
+static off_t av_seek(void * h, int64_t pos, int whence) {
     AVIOContext * bc = h;
     if (whence == SEEK_END) {
         pos = avio_size(bc) + pos;