git-svn-id: https://svn.code.sf.net/p/nsis/code/NSIS/trunk@4318 212acab6-be3b-0410-9dea-997c60f758d6
This commit is contained in:
kichik 2005-10-11 20:04:17 +00:00
parent 315c7b1d64
commit f3d46b8cb5

View file

@ -503,7 +503,7 @@ int NSISCALL myatoi(char *s)
{
unsigned int v=0;
int sign=1; // sign of positive
char m=10; // base of 0
char m=10; // base of 10
char t='9'; // cap top of numbers at 9
if (*s == '-')