From 2237523254075694bd959f435ed614d62b98606e Mon Sep 17 00:00:00 2001 From: Josh Goebel Date: Mon, 10 May 2021 10:01:47 -0400 Subject: [PATCH] (chore) return value is a Bool, not String --- src/module/os.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/module/os.c b/src/module/os.c index c13cd33f..f31ca488 100644 --- a/src/module/os.c +++ b/src/module/os.c @@ -82,7 +82,7 @@ void platformIsPosix(WrenVM* vm) #elif defined(_POSIX_VERSION) wrenSetSlotBool(vm, 0, true); #else - wrenSetSlotString(vm, 0, false); + wrenSetSlotBool(vm, 0, false); #endif }