Commit c08fb05d c08fb05ddf62c36dc43e88c61e71588937202855 by Sergey Poznyakoff

[!WITH_PTHREAD] (STATIC_UNLOCK): expand to empty string to avoid spurious warnings

1 parent a714320b
......@@ -41,7 +41,7 @@ pthread_mutex_t monitor_lock = PTHREAD_MUTEX_INITIALIZER;
# define STATIC_UNLOCK(m) pthread_mutex_unlock(m)
#else
# define STATIC_LOCK(m) 0
# define STATIC_UNLOCK(m) 0
# define STATIC_UNLOCK(m)
int monitor_lock;
#endif
......