Commit 92c3173c authored by Michael Niedermayer's avatar Michael Niedermayer

qt-faststart: fix printf argument type

Signed-off-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parent 2c5b1a2a
......@@ -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");
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment