diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2012-10-10 17:30:21 +0200 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2012-10-10 18:50:56 +0200 |
commit | 92c3173c84a97bacb3c4948cad9feca221ef156f (patch) | |
tree | 409bab1f36721a89c4ce47358351de6abeb92278 /tools | |
parent | 2c5b1a2a6abbcd0445a528a14de41c3e470bb2ae (diff) | |
download | ffmpeg-streaming-92c3173c84a97bacb3c4948cad9feca221ef156f.zip ffmpeg-streaming-92c3173c84a97bacb3c4948cad9feca221ef156f.tar.gz |
qt-faststart: fix printf argument type
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'tools')
-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 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"); |