diff options
author | Ingo Schwarze <schwarze@cvs.openbsd.org> | 2017-01-08 16:38:05 +0000 |
---|---|---|
committer | Ingo Schwarze <schwarze@cvs.openbsd.org> | 2017-01-08 16:38:05 +0000 |
commit | 51530f229306bcc43d6b0bd028a3c3cccf17443b (patch) | |
tree | b11cdacbc90cd48a0abd47759f78307b28dcdc49 /usr.bin | |
parent | ffb1ea1d60d2b5cf9c3df4bd18f744e496f5dff0 (diff) |
style: missing blank between case statement and label;
from Tiago Silva <tiagofilipesilva at icloud dot com> long ago
Diffstat (limited to 'usr.bin')
-rw-r--r-- | usr.bin/mandoc/html.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/mandoc/html.c b/usr.bin/mandoc/html.c index a1bee3ea015..8175bfb70c0 100644 --- a/usr.bin/mandoc/html.c +++ b/usr.bin/mandoc/html.c @@ -1,4 +1,4 @@ -/* $OpenBSD: html.c,v 1.62 2015/12/25 20:43:04 bentley Exp $ */ +/* $OpenBSD: html.c,v 1.63 2017/01/08 16:38:04 schwarze Exp $ */ /* * Copyright (c) 2008-2011, 2014 Kristaps Dzonsons <kristaps@bsd.lv> * Copyright (c) 2011-2015 Ingo Schwarze <schwarze@openbsd.org> @@ -660,7 +660,7 @@ buffmt_includes(struct html *h, const char *name) while (NULL != (p = strchr(pp, '%'))) { bufncat(h, pp, (size_t)(p - pp)); switch (*(p + 1)) { - case'I': + case 'I': bufcat(h, name); break; default: |