diff options
author | Jannis Hoffmann <jannis@fehcom.de> | 2024-07-03 19:03:11 +0200 |
---|---|---|
committer | Jannis Hoffmann <jannis@fehcom.de> | 2024-07-03 19:03:11 +0200 |
commit | 20b85c03e751b4876fa3c92040464e483172b746 (patch) | |
tree | 734fadbfdbc143ec4465093857f4c239448715e0 /src/headerbody.c | |
parent | a6a7d6ce079cabdaf2fa502b2e2cf15e5428ac6f (diff) |
manual format adjustment
Diffstat (limited to 'src/headerbody.c')
-rw-r--r-- | src/headerbody.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/headerbody.c b/src/headerbody.c index 4173824..58458cf 100644 --- a/src/headerbody.c +++ b/src/headerbody.c @@ -70,10 +70,11 @@ void (*dobl)(); flaglineok = 1; } - for (;;) switch (getsa(b, &nextline, &match)) - { + for (;;) { + switch (getsa(b, &nextline, &match)) { case -1: return -1; case 0: return 0; case 1: dobl(&nextline); } + } } |