From 1653fc5bb5f07e5f7f63b43fa76cfe60f0686aee Mon Sep 17 00:00:00 2001 From: Ray Date: Thu, 16 Dec 2021 00:19:09 +0100 Subject: [PATCH] Update rcore.c --- src/rcore.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/rcore.c b/src/rcore.c index d24529873..0a89df0b7 100644 --- a/src/rcore.c +++ b/src/rcore.c @@ -3317,7 +3317,7 @@ void OpenURL(const char *url) sprintf(cmd, "open '%s'", url); #endif int result = system(cmd); - if (result == -1) TRACELOG(LOG_WARNING, "OpenURL() child process could bot be created"); + if (result == -1) TRACELOG(LOG_WARNING, "OpenURL() child process could not be created"); RL_FREE(cmd); #endif #if defined(PLATFORM_WEB)