diff options
author | Pedro F. Giffuni <pfg@FreeBSD.org> | 2016-04-16 17:52:00 +0000 |
---|---|---|
committer | Pedro F. Giffuni <pfg@FreeBSD.org> | 2016-04-16 17:52:00 +0000 |
commit | bf51882a09fb19789665c0b385c5fa2f51331079 (patch) | |
tree | 9591d290a7b32152d9fdda623974bad433ef861f /lib/libc/powerpc64 | |
parent | da72d0ec065f48c496818cccc459f97c565c99d9 (diff) |
libc: make some more use of the nitems() macro.
We have an nitems() macro in the <sys/param.h> header that is
convenient to re-use as it makes things easier to read.
Given that it is available already without adding additional
headers and other parts of libc already use it, extend a bit
more its use.
Notes
Notes:
svn path=/head/; revision=298120
Diffstat (limited to 'lib/libc/powerpc64')
-rw-r--r-- | lib/libc/powerpc64/gen/syncicache.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/libc/powerpc64/gen/syncicache.c b/lib/libc/powerpc64/gen/syncicache.c index 1267c9fcc366..f9cc8bcde8a0 100644 --- a/lib/libc/powerpc64/gen/syncicache.c +++ b/lib/libc/powerpc64/gen/syncicache.c @@ -66,8 +66,8 @@ getcachelinesize() clen = sizeof(cacheline_size); - if (sysctl(cachemib, sizeof(cachemib) / sizeof(cachemib[0]), - &cacheline_size, &clen, NULL, 0) < 0 || !cacheline_size) { + if (sysctl(cachemib, nitems(cachemib), &cacheline_size, &clen, + NULL, 0) < 0 || !cacheline_size) { abort(); } } |