From: Mark Andrews Date: Thu, 30 Jan 2020 06:49:15 +0000 (+1100) Subject: remove brackets X-Git-Tag: v9.16.0~34^2~10 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=7b948c7335f6d2e5c761b190103a8cf18e3cf43d;p=thirdparty%2Fbind9.git remove brackets --- diff --git a/lib/isc/pthreads/include/isc/mutex.h b/lib/isc/pthreads/include/isc/mutex.h index 4f3a4d467ed..4e98033aa64 100644 --- a/lib/isc/pthreads/include/isc/mutex.h +++ b/lib/isc/pthreads/include/isc/mutex.h @@ -103,10 +103,10 @@ void isc__mutex_init(isc_mutex_t *mp, const char *file, unsigned int line); #if ISC_MUTEX_PROFILE #define isc_mutex_destroy(mp) \ - (RUNTIME_CHECK(pthread_mutex_destroy((&(mp)->mutex)) == 0)) + RUNTIME_CHECK(pthread_mutex_destroy((&(mp)->mutex)) == 0) #else #define isc_mutex_destroy(mp) \ - (RUNTIME_CHECK(pthread_mutex_destroy((mp)) == 0)) + RUNTIME_CHECK(pthread_mutex_destroy((mp)) == 0) #endif #if ISC_MUTEX_PROFILE