git: f93475cf0fd8 - main - pstat: Use nitems(foo) instead of sizeof(foo)/sizeof(foo[0])
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Mon, 29 Apr 2024 04:27:23 UTC
The branch main has been updated by imp:
URL: https://cgit.FreeBSD.org/src/commit/?id=f93475cf0fd8a7992131a5b8c7f94372a3e44f9c
commit f93475cf0fd8a7992131a5b8c7f94372a3e44f9c
Author: Elyes Haouas <ehaouas@noos.fr>
AuthorDate: 2023-11-07 17:13:32 +0000
Commit: Warner Losh <imp@FreeBSD.org>
CommitDate: 2024-04-29 03:30:55 +0000
pstat: Use nitems(foo) instead of sizeof(foo)/sizeof(foo[0])
Pull Request: https://github.com/freebsd/freebsd-src/pull/888
Signed-off-by: Elyes Haouas <ehaouas@noos.fr>
---
usr.sbin/pstat/pstat.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/usr.sbin/pstat/pstat.c b/usr.sbin/pstat/pstat.c
index aab7e902cc4c..fd11c7666955 100644
--- a/usr.sbin/pstat/pstat.c
+++ b/usr.sbin/pstat/pstat.c
@@ -388,7 +388,7 @@ filemode(void)
printf(sizeof(uintptr_t) == 4 ? fhdr32 : fhdr64);
wid = (int)sizeof(uintptr_t) * 2;
for (fp = (struct xfile *)buf, i = 0; i < openf; ++fp, ++i) {
- if ((size_t)fp->xf_type >= sizeof(dtypes) / sizeof(dtypes[0]))
+ if ((size_t)fp->xf_type >= nitems(dtypes))
continue;
(void)printf("%*jx", wid, (uintmax_t)(uintptr_t)fp->xf_file);
(void)printf(" %-6.6s", dtypes[fp->xf_type]);