From 4ecdf5a52e03b3d3ce3c637c375156ebb45f15ef Mon Sep 17 00:00:00 2001 From: Coleman Kane Date: Wed, 12 Jul 2023 22:40:10 -0400 Subject: [PATCH] intptr_t definition is canonically signed Make the version here match that elsewhere in the kernel and system headers. Signed-off-by: Coleman Kane --- 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 a7666187ec23..d89a91c36f92 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;