From f5192d533fff2d3d3054591b5ab438cba7f3700d Mon Sep 17 00:00:00 2001 From: Wim Taymans Date: Tue, 4 Jun 2019 17:43:52 +0200 Subject: [PATCH] system: pass right flag --- spa/plugins/support/system.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spa/plugins/support/system.c b/spa/plugins/support/system.c index f9e1819d8..f2a0db3db 100644 --- a/spa/plugins/support/system.c +++ b/spa/plugins/support/system.c @@ -97,7 +97,7 @@ static int impl_timerfd_create(void *object, int clockid, int flags) fl |= TFD_CLOEXEC; if (flags & SPA_FD_NONBLOCK) fl |= TFD_NONBLOCK; - return timerfd_create(clockid, flags); + return timerfd_create(clockid, fl); } static int impl_timerfd_settime(void *object,