mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-01-08 13:22:53 +02:00
qt-faststart: fix printf argument type
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
parent
2c5b1a2a6a
commit
92c3173c84
@ -298,7 +298,7 @@ int main(int argc, char *argv[])
|
|||||||
bytes_to_copy = FFMIN(COPY_BUFFER_SIZE, last_offset);
|
bytes_to_copy = FFMIN(COPY_BUFFER_SIZE, last_offset);
|
||||||
copy_buffer = malloc(bytes_to_copy);
|
copy_buffer = malloc(bytes_to_copy);
|
||||||
if (!copy_buffer) {
|
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;
|
goto error_out;
|
||||||
}
|
}
|
||||||
printf(" copying rest of file...\n");
|
printf(" copying rest of file...\n");
|
||||||
|
Loading…
Reference in New Issue
Block a user