summaryrefslogtreecommitdiffstats
path: root/video
diff options
context:
space:
mode:
authorPaweł Forysiuk <tuxator@o2.pl>2013-11-04 21:24:00 +0100
committerwm4 <wm4@nowhere>2013-11-04 21:28:34 +0100
commitf330884b0ae2dac81983e04cc449d4d07aa64c66 (patch)
tree993348e845ba7da745ef67a27678f75952b8bf56 /video
parent2826dcff8f8e3b95dae7a1bbfb5c6809ca7b2aa2 (diff)
downloadmpv-f330884b0ae2dac81983e04cc449d4d07aa64c66.tar.bz2
mpv-f330884b0ae2dac81983e04cc449d4d07aa64c66.tar.xz
Adjust wayland defines
Diffstat (limited to 'video')
-rw-r--r--video/out/vo_wayland.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/video/out/vo_wayland.c b/video/out/vo_wayland.c
index ff6d677e15..b1f99bd26f 100644
--- a/video/out/vo_wayland.c
+++ b/video/out/vo_wayland.c
@@ -177,7 +177,7 @@ static int create_tmpfile_cloexec(char *tmpname)
{
int fd;
-#if HAVE_MKOSTEMP
+#ifdef HAVE_MKOSTEMP
fd = mkostemp(tmpname, O_CLOEXEC);
if (fd >= 0)
unlink(tmpname);