[FFmpeg-cvslog] x11grab: Drop a spurious space in the extension reporting message

Luca Barbato git at videolan.org
Thu Aug 28 22:05:59 CEST 2014


ffmpeg | branch: master | Luca Barbato <lu_zero at gentoo.org> | Wed Aug 27 04:43:49 2014 +0200| [7bb505a33ca131906b2ceb2f298e104c862740ea] | committer: Diego Biurrun

x11grab: Drop a spurious space in the extension reporting message

Signed-off-by: Diego Biurrun <diego at biurrun.de>

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

 libavdevice/x11grab.c |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/libavdevice/x11grab.c b/libavdevice/x11grab.c
index c707ae8..9031f94 100644
--- a/libavdevice/x11grab.c
+++ b/libavdevice/x11grab.c
@@ -223,7 +223,7 @@ static int x11grab_read_header(AVFormatContext *s1)
 
     use_shm = XShmQueryExtension(dpy);
     av_log(s1, AV_LOG_INFO,
-           "shared memory extension %s found\n", use_shm ? "" : "not");
+           "shared memory extension %sfound\n", use_shm ? "" : "not ");
 
     if (use_shm) {
         int scr = XDefaultScreen(dpy);



More information about the ffmpeg-cvslog mailing list