diff options
author | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2018-03-28 01:39:41 +0200 |
---|---|---|
committer | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2018-03-28 01:39:41 +0200 |
commit | 3849b385c44d8d8a2332c826e18d31cff7327e45 (patch) | |
tree | 7c00561a25e703446598315326a13a3a8b9a01b2 /sysdeps/generic/pt-destroy-specific.c | |
parent | 08ed02b9705b7bce1b8d79da6455d59a31295212 (diff) |
Fix coding style
Diffstat (limited to 'sysdeps/generic/pt-destroy-specific.c')
-rw-r--r-- | sysdeps/generic/pt-destroy-specific.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sysdeps/generic/pt-destroy-specific.c b/sysdeps/generic/pt-destroy-specific.c index fd1b427..cb6affe 100644 --- a/sysdeps/generic/pt-destroy-specific.c +++ b/sysdeps/generic/pt-destroy-specific.c @@ -28,7 +28,7 @@ __pthread_destroy_specific (struct __pthread *thread) int seen_one; /* Check if there is any thread specific data. */ - if (!thread->thread_specifics) + if (thread->thread_specifics == NULL) return; __pthread_key_lock_ready (); |