]> git.lizzy.rs Git - dragonstd.git/blobdiff - refcount.c
Style: no longer put space after unary operators
[dragonstd.git] / refcount.c
index e0b354cfcf571e8f556c085ccf05b573ec5111ae..eef329785ae5d599d36cc9fccc78c22658da418d 100644 (file)
@@ -36,7 +36,7 @@ void *refcount_drp(void *refcount)
        unsigned short count = --rc->cnt;
        pthread_mutex_unlock(&rc->mtx);
 
-       if (! count)
+       if (!count)
                return rc->del(rc->obj);
 
        return rc->obj;