X-Git-Url: https://git.kernel.dk/?a=blobdiff_plain;f=debug.h;h=1765fdb61eb06a6518b2d67f9e4a000592dc55b6;hb=0c7a0b6b628e3a0fb642805f6ded99d6bb3f63a9;hp=b8718ddc225f894c68d981e50c4fd2bff5e85f83;hpb=447931d99aff4dad5fabfafc3b96341d8143d90c;p=fio.git 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) \