summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorQuentin Carbonneaux2014-07-19 17:29:38 -0400
committerQuentin Carbonneaux2014-07-20 12:53:04 -0400
commitd344965b94e38f2138fd3e60e4077bbbd3147998 (patch)
tree0270e557b1b4fc2b2ec1e38b87dc35a836dd2c6d
parentb8ae4215e46f19e4876eec93c14934a3c1c51982 (diff)
sanitize syntax
-rw-r--r--edit.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/edit.c b/edit.c
index 5b3a62b..7800608 100644
--- a/edit.c
+++ b/edit.c
@@ -409,7 +409,8 @@ puteb(EBuf *eb, FILE *fp)
unsigned munchb = 0, munche = 0, nl = 0;
Rune r;
- while (munche < eb->b.limbo) switch (state) {
+ while (munche < eb->b.limbo)
+ switch (state) {
case Munching:
r = buf_get(&eb->b, munche);