diff options
author | Chris Robinson <[email protected]> | 2015-12-11 07:35:39 -0800 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2015-12-11 07:35:39 -0800 |
commit | d7b2bba2e694dd9a8ac9aa5f23837122a2f34523 (patch) | |
tree | bdb1f7a511c5e2ff991558321de1341afa94e09d /common/threads.c | |
parent | 13bf636a345b6caf65444c684b4a4c3b52fc263b (diff) |
Add missing closing parenthesis
Diffstat (limited to 'common/threads.c')
-rw-r--r-- | common/threads.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/common/threads.c b/common/threads.c index 8a1ad6ea..1f6f2223 100644 --- a/common/threads.c +++ b/common/threads.c @@ -498,7 +498,7 @@ void althrd_setname(althrd_t thr, const char *name) { #if defined(HAVE_PTHREAD_SETNAME_NP) #if defined(__APPLE__) - if(althrd_equal(thr, althrd_current()) + if(althrd_equal(thr, althrd_current())) pthread_setname_np(name); #elif defined(__GNUC__) pthread_setname_np(thr, name); |