diff options
-rw-r--r-- | common/estream.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/common/estream.c b/common/estream.c index 2d6841572..3b6139eb2 100644 --- a/common/estream.c +++ b/common/estream.c @@ -176,7 +176,7 @@ static int estream_pth_killed; # define ESTREAM_MUTEX_INITIALIZER PTH_MUTEX_INIT # define ESTREAM_MUTEX_LOCK(mutex) \ (estream_pth_killed ? dummy_mutex_call_void ((mutex)) \ - : pth_mutex_acquire (&(mutex), 0, NULL)) + : (void)pth_mutex_acquire (&(mutex), 0, NULL)) # define ESTREAM_MUTEX_UNLOCK(mutex) \ (estream_pth_killed ? dummy_mutex_call_void ((mutex)) \ : pth_mutex_release (&(mutex))) |