From 5975db4c76610c4f491daa970f3833cb3d7c3a7d Mon Sep 17 00:00:00 2001 From: David Reid Date: Thu, 20 Feb 2025 12:10:26 +1000 Subject: [PATCH] Update fs. --- external/fs/fs.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/external/fs/fs.h b/external/fs/fs.h index e99686bb..5d08c4cc 100644 --- a/external/fs/fs.h +++ b/external/fs/fs.h @@ -579,11 +579,11 @@ extern "C" { #endif /* FS_USE_STDINT */ #if FS_SIZEOF_PTR == 8 - typedef unsigned long long fs_uintptr; - typedef long long fs_intptr; + typedef fs_uint64 fs_uintptr; + typedef fs_int64 fs_intptr; #else - typedef unsigned int fs_uintptr; - typedef int fs_intptr; + typedef fs_uint32 fs_uintptr; + typedef fs_int32 fs_intptr; #endif typedef unsigned char fs_bool8;