Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 18 Apr 2021 05:46:27 GMT
From:      Warner Losh <imp@FreeBSD.org>
To:        src-committers@FreeBSD.org, dev-commits-src-all@FreeBSD.org, dev-commits-src-main@FreeBSD.org
Subject:   git: 09da6ffa55a3 - main - newbus: style nit: use while<space>(0)
Message-ID:  <202104180546.13I5kR3s087091@gitrepo.freebsd.org>

next in thread | raw e-mail | index | archive | help
The branch main has been updated by imp:

URL: https://cgit.FreeBSD.org/src/commit/?id=09da6ffa55a31aa2c257ffd0b45c5208ac55f916

commit 09da6ffa55a31aa2c257ffd0b45c5208ac55f916
Author:     Warner Losh <imp@FreeBSD.org>
AuthorDate: 2021-04-18 05:45:08 +0000
Commit:     Warner Losh <imp@FreeBSD.org>
CommitDate: 2021-04-18 05:46:18 +0000

    newbus: style nit: use while<space>(0)
    
    Sponsored by:           Netflix
---
 sys/sys/kobj.h | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/sys/sys/kobj.h b/sys/sys/kobj.h
index aaf92688ca08..75d8caed7b3f 100644
--- a/sys/sys/kobj.h
+++ b/sys/sys/kobj.h
@@ -234,7 +234,7 @@ extern u_int kobj_lookup_misses;
 	} else							\
 		kobj_lookup_hits++;				\
 	_m = _ce->func;						\
-} while(0)
+} while (0)
 #else
 #define KOBJOPLOOKUP(OPS,OP) do {				\
 	kobjop_desc_t _desc = &OP##_##desc;			\
@@ -245,7 +245,7 @@ extern u_int kobj_lookup_misses;
 		_ce = kobj_lookup_method(OPS->cls,		\
 					 _cep, _desc);		\
 	_m = _ce->func;						\
-} while(0)
+} while (0)
 #endif
 
 kobj_method_t* kobj_lookup_method(kobj_class_t cls,



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202104180546.13I5kR3s087091>