summaryrefslogtreecommitdiffstats
path: root/lib.h
diff options
context:
space:
mode:
authorKevin McCarthy <kevin@8t8.us>2019-06-21 13:40:52 -0700
committerKevin McCarthy <kevin@8t8.us>2019-06-21 14:16:29 -0700
commit05d31caaceee98592dfc4af990008da444ae0920 (patch)
tree9062807290d131d46316d1cce8fde78b5864367b /lib.h
parent6c01b284e6ecd0dc701536ce1888b6c92bf61416 (diff)
Remove NULL and 0 INITVAL declarataions.
The C standard says static storage duration variables will be initialized to NULL/0.
Diffstat (limited to 'lib.h')
-rw-r--r--lib.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib.h b/lib.h
index 2a566d7f..1cc1b610 100644
--- a/lib.h
+++ b/lib.h
@@ -145,8 +145,8 @@ void mutt_exit (int);
# ifdef DEBUG
-MUTT_LIB_WHERE FILE *debugfile MUTT_LIB_INITVAL(0);
-MUTT_LIB_WHERE int debuglevel MUTT_LIB_INITVAL(0);
+MUTT_LIB_WHERE FILE *debugfile;
+MUTT_LIB_WHERE int debuglevel;
void mutt_debug (FILE *, const char *, ...);