mirror of
https://mirror.skon.top/https://github.com/FFmpeg/FFmpeg
synced 2026-04-20 21:00:41 +08:00
avutil/tests/fifo: don't print trailing spaces
This matches the tests/ref files, which were manually stripped. Signed-off-by: Kacper Michajłow <kasper93@gmail.com>
This commit is contained in:
@@ -104,7 +104,7 @@ int main(void)
|
||||
/* read data */
|
||||
for (i = 0; av_fifo_can_read(fifo); i++) {
|
||||
av_fifo_read(fifo, &j, 1);
|
||||
printf("%d ", j);
|
||||
printf(i == 0 ? "%d" : " %d", j);
|
||||
}
|
||||
printf("\n");
|
||||
|
||||
|
||||
Reference in New Issue
Block a user