summaryrefslogtreecommitdiff
path: root/cmdutils.c
diff options
context:
space:
mode:
authorLou Logan <lou@lrcd.com>2015-04-18 14:31:23 -0800
committerMichael Niedermayer <michaelni@gmx.at>2015-04-19 02:05:22 +0200
commitd1a892209803ab5bb9d72ce3d4364fbd2b4a5bfb (patch)
tree2d611390f96603033247c29541a27b4687cf2538 /cmdutils.c
parentfaf9fe2c224ea81a98afd53e2f0be0a2e13aeca9 (diff)
downloadffmpeg-d1a892209803ab5bb9d72ce3d4364fbd2b4a5bfb.tar.gz
cmdutils: indent protocols listing
For readability. Signed-off-by: Lou Logan <lou@lrcd.com> Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'cmdutils.c')
-rw-r--r--cmdutils.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/cmdutils.c b/cmdutils.c
index e4e3baca36..7126ce8fa4 100644
--- a/cmdutils.c
+++ b/cmdutils.c
@@ -1535,10 +1535,10 @@ int show_protocols(void *optctx, const char *opt, const char *arg)
printf("Supported file protocols:\n"
"Input:\n");
while ((name = avio_enum_protocols(&opaque, 0)))
- printf("%s\n", name);
+ printf(" %s\n", name);
printf("Output:\n");
while ((name = avio_enum_protocols(&opaque, 1)))
- printf("%s\n", name);
+ printf(" %s\n", name);
return 0;
}