Merge pull request #152 from darealshinji/patch-2

don't cast long long -> double -> long long
This commit is contained in:
Mikko Mononen 2019-04-05 14:01:47 +03:00 committed by GitHub
commit 3e2a632c29
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1102,7 +1102,7 @@ static double nsvg__atof(const char* s)
// Parse integer part
if (nsvg__isdigit(*cur)) {
// Parse digit sequence
intPart = (double)strtoll(cur, &end, 10);
intPart = strtoll(cur, &end, 10);
if (cur != end) {
res = (double)intPart;
hasIntPart = 1;