diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2012-10-29 22:05:33 +0100 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2012-10-29 22:11:22 +0100 |
commit | 1838961357e38402be64c0c82a2f08e4e85a0c01 (patch) | |
tree | 3c3fb654887c1b584599a4b9abd42719cd8a958c /tools/qt-faststart.c | |
parent | 91295f03d41c67546ff97bef596b8da24887e071 (diff) | |
download | ffmpeg-1838961357e38402be64c0c82a2f08e4e85a0c01.tar.gz |
qt-faststart: fix signedness of variable used to hold return code
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'tools/qt-faststart.c')
-rw-r--r-- | tools/qt-faststart.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/qt-faststart.c b/tools/qt-faststart.c index 3e2acd5e1b..ecf163a947 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; |