mirror of
https://git.ffmpeg.org/ffmpeg.git
synced 2025-02-07 15:22:57 +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;
|
||||
last_name = name;
|
||||
|
||||
printf(" %s%s %-15s %s\n",
|
||||
decode ? "D" : " ",
|
||||
encode ? "E" : " ",
|
||||
printf(" %c%c %-15s %s\n",
|
||||
decode ? 'D' : ' ',
|
||||
encode ? 'E' : ' ',
|
||||
name,
|
||||
long_name ? long_name:" ");
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user