diff options
author | Alan Coopersmith <alan.coopersmith@oracle.com> | 2012-07-16 20:53:00 -0700 |
---|---|---|
committer | Alan Coopersmith <alan.coopersmith@oracle.com> | 2012-08-06 15:22:53 -0700 |
commit | 9f7ef7f7f0566f6319d8328ce0a1e6d0fa866720 (patch) | |
tree | e0b1ff6f4b4b8e0f3c1c7ec4f2673cc75de2404f /config | |
parent | c7b7abfaa068042e396d19538215402cfbb4f1e4 (diff) |
Fix up formatting of initializers for arrays of structs
The indenter seems to have gotten confused by initializing arrays of
structs with the struct defined inline - for predefined structs it did
a better job, so match that.
Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
Diffstat (limited to 'config')
-rw-r--r-- | config/wscons.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/config/wscons.c b/config/wscons.c index 7a5e8cc10..fb114bd71 100644 --- a/config/wscons.c +++ b/config/wscons.c @@ -53,8 +53,10 @@ struct nameint { int val; char *name; } kbdenc[] = { - KB_OVRENC, KB_ENCTAB, { -0}}; + KB_OVRENC, + KB_ENCTAB, + {0} +}; struct nameint kbdvar[] = { {KB_NODEAD | KB_SG, "de_nodeadkeys"}, |