Merge pull request #152 from darealshinji/patch-2
don't cast long long -> double -> long long
This commit is contained in:
commit
3e2a632c29
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user