debug: remove extra parens
authorJens Axboe <axboe@kernel.dk>
Wed, 21 Mar 2018 14:23:50 +0000 (08:23 -0600)
committerJens Axboe <axboe@kernel.dk>
Wed, 21 Mar 2018 14:23:50 +0000 (08:23 -0600)
Signed-off-by: Jens Axboe <axboe@kernel.dk>
debug.h

diff --git a/debug.h b/debug.h
index b8718ddc225f894c68d981e50c4fd2bff5e85f83..1765fdb61eb06a6518b2d67f9e4a000592dc55b6 100644 (file)
--- a/debug.h
+++ b/debug.h
@@ -61,7 +61,7 @@ void __dprint(int type, const char *str, ...) __attribute__((format (printf, 2,
 
 #define dprint(type, str, args...)                     \
        do {                                            \
-               if ((((1 << type)) & fio_debug) == 0)   \
+               if (((1 << type) & fio_debug) == 0)     \
                        break;                          \
                __dprint((type), (str), ##args);        \
        } while (0)                                     \