Merge pull request #527 from VirusFree/pr_strtol10_64

fix for strtol10_64
pull/522/merge
Alexander Gessler 2015-04-05 17:25:50 +02:00
commit 50d5c5c4ef
1 changed files with 1 additions and 1 deletions

View File

@ -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;
}