mirror of
https://github.com/Ed94/metadesk.git
synced 2026-08-08 00:28:47 +00:00
use strtoll instead of atoll
This commit is contained in:
+1
-1
@@ -478,7 +478,7 @@ MD_I64FromString(MD_String8 string)
|
||||
{
|
||||
char str[64];
|
||||
_MD_WriteStringToBuffer(string, sizeof(str), str);
|
||||
return atoll(str);
|
||||
return strtoll(str, 0, 0);
|
||||
}
|
||||
|
||||
MD_FUNCTION_IMPL MD_f64
|
||||
|
||||
Reference in New Issue
Block a user