From 64c87a2a58204c2ec001d74d1c4a4fcceb59288d Mon Sep 17 00:00:00 2001 From: Nigel Date: Fri, 27 Oct 2023 18:04:09 +0200 Subject: [PATCH] Fixing an issue in the CoreLib --- CoreLib/ctype.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CoreLib/ctype.cpp b/CoreLib/ctype.cpp index 2c81ade..13e9cde 100644 --- a/CoreLib/ctype.cpp +++ b/CoreLib/ctype.cpp @@ -108,7 +108,7 @@ int isprint (int ch){ return 1; if(isspace(ch)) return 1; - + return 0; }