diff options
author | Sven C. Dack <sven.c.dack@virginmedia.com> | 2011-04-12 09:27:23 +0200 |
---|---|---|
committer | Carl Eugen Hoyos <cehoyos@ag.or.at> | 2011-04-12 09:27:23 +0200 |
commit | 9af209712099699d717596f55b08b3bac8b6b563 (patch) | |
tree | 61827693376b53f8b7540c9b98d2debd8b2a645e | |
parent | ff2614ee4ce2c433c841d938ce57654585341c26 (diff) | |
download | ffmpeg-9af209712099699d717596f55b08b3bac8b6b563.tar.gz |
Cosmetics: Fix white-space in av_log() message.
-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 64169ceeb0..baf6fbba67 100644 --- a/libavdevice/x11grab.c +++ b/libavdevice/x11grab.c @@ -123,7 +123,7 @@ x11grab_read_header(AVFormatContext *s1, AVFormatParameters *ap) av_set_pts_info(st, 64, 1, 1000000); /* 64 bits pts in us */ use_shm = XShmQueryExtension(dpy); - av_log(s1, AV_LOG_INFO, "shared memory extension %s found\n", use_shm ? "" : "not"); + av_log(s1, AV_LOG_INFO, "shared memory extension%s found\n", use_shm ? "" : " not"); if(use_shm) { int scr = XDefaultScreen(dpy); |