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

Submitted by:	<bf1783 AT gmail DOT com>
This commit is contained in:
Matthew D Fleming 2011-01-12 20:38:55 +00:00
parent 9b6c99e835
commit dd616d40f7

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; );