[FFmpeg-cvslog] qt-faststart: fix printf argument type

Michael Niedermayer git at videolan.org
Wed Oct 10 18:51:15 CEST 2012


ffmpeg | branch: master | Michael Niedermayer <michaelni at gmx.at> | Wed Oct 10 17:30:21 2012 +0200| [92c3173c84a97bacb3c4948cad9feca221ef156f] | committer: Michael Niedermayer

qt-faststart: fix printf argument type

Signed-off-by: Michael Niedermayer <michaelni at gmx.at>

> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=92c3173c84a97bacb3c4948cad9feca221ef156f
---

 tools/qt-faststart.c |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/tools/qt-faststart.c b/tools/qt-faststart.c
index b9dbdfd..8af510f 100644
--- a/tools/qt-faststart.c
+++ b/tools/qt-faststart.c
@@ -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");



More information about the ffmpeg-cvslog mailing list