]> git.lizzy.rs Git - dragonstd.git/blobdiff - flag.c
Style: no longer put space after unary operators
[dragonstd.git] / flag.c
diff --git a/flag.c b/flag.c
index a8bb87888f5ee67f3b7752f80269718fe1d108ea..6937e5f04e3a1b58746d5eb7c54a1aefb8b8ccf7 100644 (file)
--- a/flag.c
+++ b/flag.c
@@ -44,7 +44,7 @@ void flag_set(Flag *flag)
 void flag_slp(Flag *flag)
 {
        pthread_mutex_lock(&flag->mtx);
-       if (! flag->set)
+       if (!flag->set)
                pthread_cond_wait(&flag->cnd, &flag->mtx);
        pthread_mutex_unlock(&flag->mtx);
 }