From: Michael Niedermayer Date: Mon, 29 Oct 2012 21:05:33 +0000 (+0100) Subject: qt-faststart: fix signedness of variable used to hold return code X-Git-Tag: n1.1~1771 X-Git-Url: http://git.ffmpeg.org/gitweb/ffmpeg.git/commitdiff_plain/1838961357e38402be64c0c82a2f08e4e85a0c01 qt-faststart: fix signedness of variable used to hold return code Signed-off-by: Michael Niedermayer --- diff --git a/tools/qt-faststart.c b/tools/qt-faststart.c index 3e2acd5..ecf163a 100644 --- a/tools/qt-faststart.c +++ b/tools/qt-faststart.c @@ -97,7 +97,7 @@ int main(int argc, char *argv[]) uint64_t i, j; uint32_t offset_count; uint64_t current_offset; - uint64_t start_offset = 0; + int64_t start_offset = 0; unsigned char *copy_buffer = NULL; int bytes_to_copy;