[FFmpeg-cvslog] cmdutils: indent protocols listing

Lou Logan git at videolan.org
Sun Apr 19 02:38:41 CEST 2015


ffmpeg | branch: master | Lou Logan <lou at lrcd.com> | Sat Apr 18 14:31:23 2015 -0800| [d1a892209803ab5bb9d72ce3d4364fbd2b4a5bfb] | committer: Michael Niedermayer

cmdutils: indent protocols listing

For readability.

Signed-off-by: Lou Logan <lou at lrcd.com>
Signed-off-by: Michael Niedermayer <michaelni at gmx.at>

> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=d1a892209803ab5bb9d72ce3d4364fbd2b4a5bfb
---

 cmdutils.c |    4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/cmdutils.c b/cmdutils.c
index e4e3bac..7126ce8 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;
 }
 



More information about the ffmpeg-cvslog mailing list