From: Gabriel Corona Date: Tue, 16 Jun 2015 08:27:36 +0000 (+0200) Subject: Remove extraneous parentheses X-Git-Tag: v3_12~593 X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/commitdiff_plain/2d7067800fd59e6351761b9098f0348e81540b37?hp=dc7418e3309ec6ac15b54b32e290e4d3240f8f63 Remove extraneous parentheses clang is not happy. --- diff --git a/src/xbt/xbt_os_thread.c b/src/xbt/xbt_os_thread.c index 2059f2c547..7be5fb38d0 100644 --- a/src/xbt/xbt_os_thread.c +++ b/src/xbt/xbt_os_thread.c @@ -571,7 +571,7 @@ xbt_os_sem_t xbt_os_sem_init(unsigned int value) res->name[13] = '\0'; res->ps = sem_open(res->name, O_CREAT, 0644, value); } - if ((res->ps == (sem_t *) SEM_FAILED)) + if (res->ps == (sem_t *) SEM_FAILED) THROWF(system_error, errno, "sem_open() failed: %s", strerror(errno)); /* Remove the name from the semaphore namespace: we never join on it */