diff options
author | Luca Barbato | 2014-08-27 04:43:49 +0200 |
---|---|---|
committer | Diego Biurrun | 2014-08-28 15:46:56 +0200 |
commit | 7bb505a33ca131906b2ceb2f298e104c862740ea (patch) | |
tree | 4d3fdc5a00aebaead297450333289d07efaf02ed /libavdevice | |
parent | 20e82b41fcad23ebbb18d89948aebfcc53921198 (diff) |
x11grab: Drop a spurious space in the extension reporting message
Signed-off-by: Diego Biurrun <diego@biurrun.de>
Diffstat (limited to 'libavdevice')
-rw-r--r-- | libavdevice/x11grab.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavdevice/x11grab.c b/libavdevice/x11grab.c index c707ae82ac..9031f946bf 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); |