use strtoll instead of atoll

This commit is contained in:
ryanfleury
2021-02-16 13:49:27 -07:00
parent 50d6f7cd64
commit 2e2ff1c42f
+1 -1
View File
@@ -478,7 +478,7 @@ MD_I64FromString(MD_String8 string)
{ {
char str[64]; char str[64];
_MD_WriteStringToBuffer(string, sizeof(str), str); _MD_WriteStringToBuffer(string, sizeof(str), str);
return atoll(str); return strtoll(str, 0, 0);
} }
MD_FUNCTION_IMPL MD_f64 MD_FUNCTION_IMPL MD_f64