From b158fdb88389b33de8e1447f77d29ff7a8975463 Mon Sep 17 00:00:00 2001 From: Darren Salt Date: Tue, 1 Oct 2013 21:25:36 +0100 Subject: =?UTF-8?q?Clean=20up=20vaapi=20=C2=B5s=20delay=20code.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/xine-utils/utils.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/xine-utils') diff --git a/src/xine-utils/utils.c b/src/xine-utils/utils.c index 12641daa0..ed008929a 100644 --- a/src/xine-utils/utils.c +++ b/src/xine-utils/utils.c @@ -508,7 +508,7 @@ void xine_usec_sleep(unsigned usec) { struct timeval tm; tm.tv_sec = usec / 1000000; tm.tv_usec = usec % 1000000; - select(0, 0, 0, 0, &tm); + select(0, 0, 0, 0, &tm); /* FIXME: EINTR? */ # endif #endif } -- cgit v1.2.3