]> git.sur5r.net Git - i3/i3lock/blobdiff - i3lock.h
Merge pull request #213 from trickeydan/patch-1
[i3/i3lock] / i3lock.h
index 3e336ad50e30ee810ad178465fe18be5b1b371fd..57190e5b6dd07fa32b451698960d2f135ddebbe9 100644 (file)
--- a/i3lock.h
+++ b/i3lock.h
@@ -5,9 +5,10 @@
  * This is important because xautolock (for example) closes stdout/stderr by
  * default, so just printing something to stdout will lead to the data ending
  * up on the X11 socket (!). */
-#define DEBUG(fmt, ...) do { \
-    if (debug_mode) \
-        printf("[i3lock-debug] " fmt, ##__VA_ARGS__); \
-} while (0)
+#define DEBUG(fmt, ...)                                   \
+    do {                                                  \
+        if (debug_mode)                                   \
+            printf("[i3lock-debug] " fmt, ##__VA_ARGS__); \
+    } while (0)
 
 #endif