summaryrefslogtreecommitdiffstats
path: root/lib.h
diff options
context:
space:
mode:
authorKevin McCarthy <kevin@8t8.us>2019-01-04 18:45:01 -0800
committerKevin McCarthy <kevin@8t8.us>2019-01-04 19:50:16 -0800
commitefa3afb539b9672ebd6e64cb0c16b98c5f6b8a60 (patch)
tree8fd166307801d97c801d6a2e75f255d6b0ba0f48 /lib.h
parent248c2ee8ed7c0ff333ae076041107210c5acd641 (diff)
Clean up formatting.
Add spaces after if, else, while, for, switch. Unify the brace placement style. The vast majority of the code uses Allman style so convert the relatively few K&R braces over.
Diffstat (limited to 'lib.h')
-rw-r--r--lib.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib.h b/lib.h
index 81453b30..5af75ac8 100644
--- a/lib.h
+++ b/lib.h
@@ -150,7 +150,7 @@ MUTT_LIB_WHERE int debuglevel MUTT_LIB_INITVAL(0);
void mutt_debug (FILE *, const char *, ...);
-# define dprint(N,X) do { if(debuglevel>=N && debugfile) mutt_debug X; } while (0)
+# define dprint(N,X) do { if (debuglevel>=N && debugfile) mutt_debug X; } while (0)
# else