On 11/07/15 09:37, Svatopluk Kraus wrote:
+#define        SYSCTL_NULL_U64_PTR ((unsigned *)NULL)

Hi Conrad,

All the NULL macros must have correct type according to the size-check asserts. Else they won't have any purpose:

#define SYSCTL_NULL_U64_PTR ((uint64_t *)NULL)
#define SYSCTL_NULL_S64_PTR ((int64_t *)NULL)

#define SYSCTL_NULL_U8_PTR ((uint8_t *)NULL)
#define SYSCTL_NULL_S8_PTR ((int8_t *)NULL)

And so one. Can you fix this?

--HPS

_______________________________________________
svn-src-head@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/svn-src-head
To unsubscribe, send any mail to "svn-src-head-unsubscr...@freebsd.org"

Reply via email to