all: clean up misleading indentation warnings

Misleading indentation warnings are actually useful, as they
will occasionally reveal actual bugs (cf the apple `goto fail`
security bug from a few years ago).  Newer versions of clang
(at least) are more aggressive about warnings in this regard,
which has exposed a few warnings that are annoying.  However,
they are easy to address.
This commit is contained in:
Dan Cross
2025-07-25 11:20:03 -04:00
parent 5a9ced10ee
commit 655f7c3184
6 changed files with 28 additions and 22 deletions

View File

@@ -91,7 +91,8 @@ sunrpcrequestthread(void *v)
while((m = recvp(srv->crequest)) != nil){
/* could look up in cache here? */
if(srv->chatty) fprint(2, "sun msg %p count %d\n", m, m->count);
if(srv->chatty)
fprint(2, "sun msg %p count %d\n", m, m->count);
m->srv = srv;
p = m->data;
ep = p+m->count;