diff options
author | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2018-03-28 00:50:04 +0200 |
---|---|---|
committer | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2018-03-28 00:50:04 +0200 |
commit | 05cefb83e22c08aedf5d3b893ad387eb6424faba (patch) | |
tree | 20bdecf3032d11716c94afa3a7bb085f5b70493a /pthread/pt-exit.c | |
parent | 85b62d7aaedb24b6ad07d437e5b8560f62d07529 (diff) |
Fix coding style
Diffstat (limited to 'pthread/pt-exit.c')
-rw-r--r-- | pthread/pt-exit.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pthread/pt-exit.c b/pthread/pt-exit.c index 14e560e..314bfd4 100644 --- a/pthread/pt-exit.c +++ b/pthread/pt-exit.c @@ -65,7 +65,7 @@ __pthread_exit (void *status) switch (self->state) { default: - assert (! "Consistency error: unexpected self->state"); + assert (!"Consistency error: unexpected self->state"); abort (); break; |