From 92fc218205b24b90d666f92ac68f1f709abd5cf4 Mon Sep 17 00:00:00 2001 From: Coleman Kane Date: Fri, 14 Jul 2023 19:32:49 -0400 Subject: [PATCH] intptr_t definition is canonically signed Make the version here match that elsewhere in the kernel and system headers. Reviewed-by: Brian Behlendorf Reviewed-by: Alexander Motin Signed-off-by: Coleman Kane Closes #15058 --- include/os/linux/spl/sys/types.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/os/linux/spl/sys/types.h b/include/os/linux/spl/sys/types.h index 4d638efbbc32..9f85685fac77 100644 --- a/include/os/linux/spl/sys/types.h +++ b/include/os/linux/spl/sys/types.h @@ -38,7 +38,7 @@ typedef unsigned long ulong_t; typedef unsigned long long u_longlong_t; typedef long long longlong_t; -typedef unsigned long intptr_t; +typedef long intptr_t; typedef unsigned long long rlim64_t; typedef struct task_struct kthread_t;