diff options
author | Warner Losh <imp@FreeBSD.org> | 2021-04-18 05:45:08 +0000 |
---|---|---|
committer | Warner Losh <imp@FreeBSD.org> | 2021-04-18 05:46:18 +0000 |
commit | 09da6ffa55a31aa2c257ffd0b45c5208ac55f916 (patch) | |
tree | 391f38d6efb6a41af0ca751c25eb76ea630a2788 | |
parent | 7f014be5eaceffd16f194e9c3b585fe194fb189f (diff) |
newbus: style nit: use while<space>(0)
Sponsored by: Netflix
-rw-r--r-- | sys/sys/kobj.h | 4 |
1 files 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, |