From 1c63561283caf77f22529baf8988854cd395f821 Mon Sep 17 00:00:00 2001 From: Michael Scire Date: Wed, 25 Oct 2023 16:22:22 -0700 Subject: [PATCH] fs: int -> s32 in FatFatError --- nx/include/switch/services/fs.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/nx/include/switch/services/fs.h b/nx/include/switch/services/fs.h index babaa4f2..8ded6d69 100644 --- a/nx/include/switch/services/fs.h +++ b/nx/include/switch/services/fs.h @@ -350,9 +350,9 @@ typedef struct { /// FatFatError typedef struct { - int error; - int extra_error; - int drive_id; + s32 error; + s32 extra_error; + s32 drive_id; char name[16]; u8 reserved[4]; } FatFatError;