From: Karel Zak Date: Fri, 21 Mar 2014 10:21:56 +0000 (+0100) Subject: include/debug: fix coding style X-Git-Tag: v2.25-rc1~418 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=d282c88df5cef3978546d9b6ce894d18421d9615;p=thirdparty%2Futil-linux.git include/debug: fix coding style Signed-off-by: Karel Zak --- diff --git a/include/debug.h b/include/debug.h index dfb640f6b6..069447967e 100644 --- a/include/debug.h +++ b/include/debug.h @@ -17,28 +17,29 @@ /* l - library name, p - flag prefix, m - flag postfix, x - function */ # define __UL_DBG(l, p, m, x) \ - do { \ - if ((p ## m) & l ## _debug_mask) { \ - fprintf(stderr, "%d: %s: %8s: ", getpid(), # l, # m); \ - x; \ - } \ - } while (0) + do { \ + if ((p ## m) & l ## _debug_mask) { \ + fprintf(stderr, "%d: %s: %8s: ", getpid(), # l, # m); \ + x; \ + } \ + } while (0) -#define __UL_INIT_DEBUG(lib, pref, mask, env) do { \ - if (lib ## _debug_mask & pref ## INIT) \ - ; \ - else if (!mask) { \ - char *str = getenv(# env); \ - if (str) \ - lib ## _debug_mask = strtoul(str, 0, 0); \ - } else \ - lib ## _debug_mask = mask; \ - lib ## _debug_mask |= pref ## INIT; \ - if (lib ## _debug_mask != pref ## INIT) { \ - __UL_DBG(lib, pref, INIT, ul_debug("library debug mask: 0x%04x", \ - lib ## _debug_mask)); \ - } \ -} while (0) +#define __UL_INIT_DEBUG(lib, pref, mask, env) \ + do { \ + if (lib ## _debug_mask & pref ## INIT) \ + ; \ + else if (!mask) { \ + char *str = getenv(# env); \ + if (str) \ + lib ## _debug_mask = strtoul(str, 0, 0); \ + } else \ + lib ## _debug_mask = mask; \ + lib ## _debug_mask |= pref ## INIT; \ + if (lib ## _debug_mask != pref ## INIT) { \ + __UL_DBG(lib, pref, INIT, ul_debug("library debug mask: 0x%04x", \ + lib ## _debug_mask)); \ + } \ + } while (0) static inline void __attribute__ ((__format__ (__printf__, 1, 2))) ul_debug(const char *mesg, ...)