mirror of
https://git.ffmpeg.org/ffmpeg.git
synced 2026-06-16 04:32:47 +02: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