Commit 1fc39631 authored by Michael Niedermayer's avatar Michael Niedermayer

Merge commit '7bb505a3'

* commit '7bb505a3':
  x11grab: Drop a spurious space in the extension reporting message

Conflicts:
	libavdevice/x11grab.c

See: 9af20971Merged-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parents 65c9e2d0 7bb505a3
......@@ -223,7 +223,7 @@ static int x11grab_read_header(AVFormatContext *s1)
if (x11grab->use_shm) {
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) {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment