summaryrefslogtreecommitdiff
path: root/i3lock.h
diff options
context:
space:
mode:
Diffstat (limited to 'i3lock.h')
-rw-r--r--i3lock.h9
1 files changed, 5 insertions, 4 deletions
diff --git a/i3lock.h b/i3lock.h
index 3e336ad..57190e5 100644
--- 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