summaryrefslogtreecommitdiffstats
path: root/buffy.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 /buffy.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 'buffy.h')
-rw-r--r--buffy.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/buffy.h b/buffy.h
index 6e8f4669..888b07d1 100644
--- a/buffy.h
+++ b/buffy.h
@@ -45,7 +45,7 @@ typedef struct buffy_t
}
BUFFY;
-WHERE BUFFY *Incoming INITVAL (0);
+WHERE BUFFY *Incoming;
WHERE short BuffyTimeout INITVAL (3);
WHERE short BuffyCheckStatsInterval INITVAL (60);