Browse Source

qt-faststart: fix printf argument type

Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
tags/n1.1
Michael Niedermayer 12 years ago
parent
commit
92c3173c84
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      tools/qt-faststart.c

+ 1
- 1
tools/qt-faststart.c View 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");


Loading…
Cancel
Save