mirror of
https://git.ffmpeg.org/ffmpeg.git
synced 2025-02-12 09:39:46 +00:00
fftools/cmdutils: Use %c, not %s to write a single char
Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
This commit is contained in:
parent
5312208f12
commit
b36b703c29
@ -1345,9 +1345,9 @@ static int show_formats_devices(void *optctx, const char *opt, const char *arg,
|
|||||||
break;
|
break;
|
||||||
last_name = name;
|
last_name = name;
|
||||||
|
|
||||||
printf(" %s%s %-15s %s\n",
|
printf(" %c%c %-15s %s\n",
|
||||||
decode ? "D" : " ",
|
decode ? 'D' : ' ',
|
||||||
encode ? "E" : " ",
|
encode ? 'E' : ' ',
|
||||||
name,
|
name,
|
||||||
long_name ? long_name:" ");
|
long_name ? long_name:" ");
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user