[FFmpeg-cvslog] avdevice/caca: remove space before ':' (English typo, cosmetics)

Clément Bœsch git at videolan.org
Sat Sep 12 18:27:29 CEST 2015


ffmpeg | branch: master | Clément Bœsch <u at pkh.me> | Fri Sep 11 21:06:12 2015 +0200| [79f0f1a80bd03bd66fbf52cbff0892aba68b155a] | committer: Clément Bœsch

avdevice/caca: remove space before ':' (English typo, cosmetics)

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

 libavdevice/caca.c |    4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/libavdevice/caca.c b/libavdevice/caca.c
index 56cf0d1..574b7f3 100644
--- a/libavdevice/caca.c
+++ b/libavdevice/caca.c
@@ -69,7 +69,7 @@ static void list_drivers(CACAContext *c)
 
     av_log(c->ctx, AV_LOG_INFO, "Available drivers:\n");
     for (i = 0; drivers[i]; i += 2)
-        av_log(c->ctx, AV_LOG_INFO, "%s : %s\n", drivers[i], drivers[i + 1]);
+        av_log(c->ctx, AV_LOG_INFO, "%s: %s\n", drivers[i], drivers[i + 1]);
 }
 
 #define DEFINE_LIST_DITHER(thing, thing_str)                                 \
@@ -80,7 +80,7 @@ static void list_dither_## thing(CACAContext *c)                         \
                                                                              \
     av_log(c->ctx, AV_LOG_INFO, "Available %s:\n", thing_str);               \
     for (i = 0; thing[i]; i += 2)                                            \
-        av_log(c->ctx, AV_LOG_INFO, "%s : %s\n", thing[i], thing[i + 1]);    \
+        av_log(c->ctx, AV_LOG_INFO, "%s: %s\n", thing[i], thing[i + 1]);     \
 }
 
 DEFINE_LIST_DITHER(color, "colors");



More information about the ffmpeg-cvslog mailing list