diff options
author | jhb <jhb@FreeBSD.org> | 2013-09-12 19:52:23 +0000 |
---|---|---|
committer | jhb <jhb@FreeBSD.org> | 2013-09-12 19:52:23 +0000 |
commit | 3e063dc0d0da1f946598c6894758a6ddf3de60f6 (patch) | |
tree | 74a267090fcae7534677d26e93b02d290870c33f /sys/sys | |
parent | 506c0effdcfa9265c6e6d8c4efb3a3dc56d686ab (diff) | |
download | FreeBSD-src-3e063dc0d0da1f946598c6894758a6ddf3de60f6.zip FreeBSD-src-3e063dc0d0da1f946598c6894758a6ddf3de60f6.tar.gz |
Fix a typo.
Approved by: re (gjb)
Diffstat (limited to 'sys/sys')
-rw-r--r-- | sys/sys/sysctl.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/sys/sysctl.h b/sys/sys/sysctl.h index d157e3f..64292ba 100644 --- a/sys/sys/sysctl.h +++ b/sys/sys/sysctl.h @@ -389,7 +389,7 @@ SYSCTL_ALLOWED_TYPES(UINT64, uint64_t *a; unsigned long long *b; ); SYSCTL_ADD_ASSERT_TYPE(UINT64, ptr), 0, \ sysctl_handle_64, "QU", __DESCR(descr)) -/* Oid for a 64-bin unsigned counter(9). The pointer must be non NULL. */ +/* Oid for a 64-bit unsigned counter(9). The pointer must be non NULL. */ #define SYSCTL_COUNTER_U64(parent, nbr, name, access, ptr, val, descr) \ SYSCTL_ASSERT_TYPE(UINT64, ptr, parent, name); \ SYSCTL_OID(parent, nbr, name, \ |