diff --git a/code/fast_atof.h b/code/fast_atof.h index b6bc5d3d6..35b1e6b94 100644 --- a/code/fast_atof.h +++ b/code/fast_atof.h @@ -229,7 +229,7 @@ inline int64_t strtol10_64(const char* in, const char** out = 0, unsigned int* m if (inv || *in == '+') ++in; - int value = strtoul10_64(in, out, max_inout); + int64_t value = strtoul10_64(in, out, max_inout); if (inv) { value = -value; }