From 0888251fb1bd95c116486402f2f543ec16fe0f6a Mon Sep 17 00:00:00 2001 From: Nick Terrell Date: Tue, 4 Apr 2017 15:49:38 -0700 Subject: [PATCH] Switch intptr_t to ptrdiff_t --- contrib/linux-kernel/lib/mem.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/contrib/linux-kernel/lib/mem.h b/contrib/linux-kernel/lib/mem.h index 6040aa5c7..76cae04fa 100644 --- a/contrib/linux-kernel/lib/mem.h +++ b/contrib/linux-kernel/lib/mem.h @@ -38,7 +38,7 @@ typedef uint32_t U32; typedef int32_t S32; typedef uint64_t U64; typedef int64_t S64; -typedef intptr_t iPtrDiff; +typedef ptrdiff_t iPtrDiff; typedef uintptr_t uPtrDiff;