Fix a typo. XLONG should allow pointers to unsigned and signed long.

Submitted by:	<bf1783 AT gmail DOT com>
This commit is contained in:
mdf 2011-01-12 20:38:55 +00:00
parent e91078fdc9
commit f80acf51cb

View File

@ -242,7 +242,7 @@ SYSCTL_ALLOWED_TYPES(UINT, unsigned int *a; );
SYSCTL_ALLOWED_TYPES(XINT, unsigned int *a; int *b; );
SYSCTL_ALLOWED_TYPES(LONG, long *a; );
SYSCTL_ALLOWED_TYPES(ULONG, unsigned long *a; );
SYSCTL_ALLOWED_TYPES(XLONG, unsigned long *a; long b; );
SYSCTL_ALLOWED_TYPES(XLONG, unsigned long *a; long *b; );
SYSCTL_ALLOWED_TYPES(INT64, int64_t *a; long long *b; );
SYSCTL_ALLOWED_TYPES(UINT64, uint64_t *a; unsigned long long *b; );