From 76f4f5ea8876efaf85388237af226106af5e71d8 Mon Sep 17 00:00:00 2001 From: Jeffery Myers Date: Thu, 30 Dec 2021 11:33:45 -0800 Subject: [PATCH] CI fixes --- src/rcore.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/rcore.c b/src/rcore.c index 420608df9..3b9ed2e0b 100644 --- a/src/rcore.c +++ b/src/rcore.c @@ -3064,7 +3064,7 @@ const char* GetApplicationDirectory(void) if (_NSGetExecutablePath(appDir, &size) == 0) { - int len = strlne(appDir); + int len = strlen(appDir); for (int i = len; i >= 0; --i) { if (appDir[i] == '/')