From: Jens Axboe Date: Wed, 21 Mar 2018 14:23:50 +0000 (-0600) Subject: debug: remove extra parens X-Git-Tag: fio-3.6~32 X-Git-Url: https://git.kernel.dk/?p=fio.git;a=commitdiff_plain;h=0c7a0b6b628e3a0fb642805f6ded99d6bb3f63a9 debug: remove extra parens Signed-off-by: Jens Axboe --- diff --git a/debug.h b/debug.h index b8718ddc..1765fdb6 100644 --- 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) \