From 49311d221a2d94ec8d1cb817daa758564e23a2f0 Mon Sep 17 00:00:00 2001 From: JustinAJ Date: Tue, 2 Sep 2014 20:59:24 -0400 Subject: [PATCH] Corrected function call. --- Jupiter/Functions.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Jupiter/Functions.c b/Jupiter/Functions.c index 4d4ec71..7af4b52 100644 --- a/Jupiter/Functions.c +++ b/Jupiter/Functions.c @@ -601,7 +601,7 @@ int Jupiter_strtoi(const char *str, int base) unsigned int Jupiter_strtoui(const char *str, int base) { while (isspace(*str)) str++; - return Jupiter_strtoi_nospace(str, base); + return Jupiter_strtoui_nospace(str, base); } double Jupiter_strtod(const char *str)