From 825d2c44668ececf45df29b127ee762429a493fe Mon Sep 17 00:00:00 2001 From: David Reid Date: Fri, 22 Aug 2025 11:27:45 +1000 Subject: [PATCH] Update fs. --- external/fs/fs.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/external/fs/fs.c b/external/fs/fs.c index 34cb104f..f6ba0de9 100644 --- a/external/fs/fs.c +++ b/external/fs/fs.c @@ -4915,7 +4915,7 @@ static fs_result fs_mkdir_stdio_win32(const char* pPath) int result; /* If it's a drive letter segment just pretend it's successful. */ - if (pPath[0] >= 'a' && pPath[0] <= 'z' || pPath[0] >= 'A' && pPath[0] <= 'Z') { + if ((pPath[0] >= 'a' && pPath[0] <= 'z') || (pPath[0] >= 'A' && pPath[0] <= 'Z')) { if (pPath[1] == ':' && pPath[2] == '\0') { return FS_SUCCESS; }