Commit d1a89220 authored by Lou Logan's avatar Lou Logan Committed by Michael Niedermayer

cmdutils: indent protocols listing

For readability.
Signed-off-by: 's avatarLou Logan <lou@lrcd.com>
Signed-off-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parent faf9fe2c
...@@ -1535,10 +1535,10 @@ int show_protocols(void *optctx, const char *opt, const char *arg) ...@@ -1535,10 +1535,10 @@ int show_protocols(void *optctx, const char *opt, const char *arg)
printf("Supported file protocols:\n" printf("Supported file protocols:\n"
"Input:\n"); "Input:\n");
while ((name = avio_enum_protocols(&opaque, 0))) while ((name = avio_enum_protocols(&opaque, 0)))
printf("%s\n", name); printf(" %s\n", name);
printf("Output:\n"); printf("Output:\n");
while ((name = avio_enum_protocols(&opaque, 1))) while ((name = avio_enum_protocols(&opaque, 1)))
printf("%s\n", name); printf(" %s\n", name);
return 0; return 0;
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment