summaryrefslogtreecommitdiff
path: root/i3status.c
diff options
context:
space:
mode:
authorIngo Bürk <admin@airblader.de>2018-07-16 16:18:06 +0200
committerGitHub <noreply@github.com>2018-07-16 16:18:06 +0200
commit639a67f752874142b1c081345fd36610e9046103 (patch)
treecdc94184dd55946a3dfba1657a5820c38a2924fb /i3status.c
parent0b25052cd0457736d45962d7f0ad057bbb648081 (diff)
parent3fd61f86dbbe5e0b1bce99836657f32feacce6eb (diff)
Merge pull request #296 from Stunkymonkey/include-order
switch to clang 3.8 & ignore include sort order
Diffstat (limited to 'i3status.c')
-rw-r--r--i3status.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/i3status.c b/i3status.c
index c604320..76cb280 100644
--- a/i3status.c
+++ b/i3status.c
@@ -44,7 +44,8 @@
CFG_STR_CB("align", NULL, CFGF_NONE, parse_align)
#define CFG_COLOR_OPTS(good, degraded, bad) \
- CFG_STR("color_good", good, CFGF_NONE), \
+ CFG_STR("color_good", good, CFGF_NONE) \
+ , \
CFG_STR("color_degraded", degraded, CFGF_NONE), \
CFG_STR("color_bad", bad, CFGF_NONE)