0
0
mirror of https://github.com/mpv-player/mpv.git synced 2024-09-20 12:02:23 +02:00

input: fix build if HAVE_PTHREADS is undefined

This commit is contained in:
Giuliano Schneider 2013-08-15 10:59:58 +02:00 committed by Stefano Pigozzi
parent cd85379423
commit e437ecf729

View File

@ -73,7 +73,7 @@ static pthread_mutex_t queue_mutex = PTHREAD_MUTEX_INITIALIZER;
#define queue_unlock() pthread_mutex_unlock(&queue_mutex) #define queue_unlock() pthread_mutex_unlock(&queue_mutex)
#else #else
#define queue_lock() 0 #define queue_lock() 0
#define queue_lock() 0 #define queue_unlock() 0
#endif #endif
struct cmd_bind { struct cmd_bind {