From f3d46b8cb5c2a5f08c202262f9c0c133d794bbb0 Mon Sep 17 00:00:00 2001 From: kichik Date: Tue, 11 Oct 2005 20:04:17 +0000 Subject: [PATCH] typo git-svn-id: https://svn.code.sf.net/p/nsis/code/NSIS/trunk@4318 212acab6-be3b-0410-9dea-997c60f758d6 --- Source/exehead/util.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/exehead/util.c b/Source/exehead/util.c index 94c6c869..f209ee89 100644 --- a/Source/exehead/util.c +++ b/Source/exehead/util.c @@ -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 == '-')