From e437ecf7291a84be8723fdb27cf4376956eb4007 Mon Sep 17 00:00:00 2001 From: Giuliano Schneider Date: Thu, 15 Aug 2013 10:59:58 +0200 Subject: input: fix build if HAVE_PTHREADS is undefined --- mpvcore/input/input.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'mpvcore') diff --git a/mpvcore/input/input.c b/mpvcore/input/input.c index 2685083ecc..504eb66c6e 100644 --- a/mpvcore/input/input.c +++ b/mpvcore/input/input.c @@ -73,7 +73,7 @@ static pthread_mutex_t queue_mutex = PTHREAD_MUTEX_INITIALIZER; #define queue_unlock() pthread_mutex_unlock(&queue_mutex) #else #define queue_lock() 0 -#define queue_lock() 0 +#define queue_unlock() 0 #endif struct cmd_bind { -- cgit v1.2.3