Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCarl Eugen Hoyos <cehoyos@ag.or.at>2015-06-13 10:28:41 +0300
committerCarl Eugen Hoyos <cehoyos@ag.or.at>2015-06-13 10:28:41 +0300
commit3323c5f353af9d9de29528a086cbe9b103e268ea (patch)
treecf6c85e2fb50436ee0bc86352b4945bf61f13fe4 /libavformat/libnut.c
parent178ba1fd03c85835a70ec5b365d62ec6582da97f (diff)
Remove a few occurences of "long long" from the libraries.
Diffstat (limited to 'libavformat/libnut.c')
-rw-r--r--libavformat/libnut.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/libnut.c b/libavformat/libnut.c
index 4a9a21a766..92623ed452 100644
--- a/libavformat/libnut.c
+++ b/libavformat/libnut.c
@@ -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;