]> git.sesse.net Git - ffmpeg/commitdiff
qt-faststart: fix printf argument type
authorMichael Niedermayer <michaelni@gmx.at>
Wed, 10 Oct 2012 15:30:21 +0000 (17:30 +0200)
committerMichael Niedermayer <michaelni@gmx.at>
Wed, 10 Oct 2012 16:50:56 +0000 (18:50 +0200)
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
tools/qt-faststart.c

index b9dbdfdb6aed11586b65c192ba6d2d146d550731..8af510f71c28c8b3d986d38b6e19b3f3b7a16c5a 100644 (file)
@@ -298,7 +298,7 @@ int main(int argc, char *argv[])
     bytes_to_copy = FFMIN(COPY_BUFFER_SIZE, last_offset);
     copy_buffer = malloc(bytes_to_copy);
     if (!copy_buffer) {
-        printf("could not allocate %"PRIu64" bytes for copy_buffer\n", bytes_to_copy);
+        printf("could not allocate %d bytes for copy_buffer\n", bytes_to_copy);
         goto error_out;
     }
     printf(" copying rest of file...\n");