aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--fftools/opt_common.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/fftools/opt_common.c b/fftools/opt_common.c
index 3881d5bbef..02d7048c42 100644
--- a/fftools/opt_common.c
+++ b/fftools/opt_common.c
@@ -615,10 +615,10 @@ static void print_codecs_for_id(enum AVCodecID id, int encoder)
void *iter = NULL;
const AVCodec *codec;
- printf(" (%s: ", encoder ? "encoders" : "decoders");
+ printf(" (%s:", encoder ? "encoders" : "decoders");
while ((codec = next_codec_for_id(id, &iter, encoder)))
- printf("%s ", codec->name);
+ printf(" %s", codec->name);
printf(")");
}