From 8593a15d84789613485b2d67c732fbe5564aaf2b Mon Sep 17 00:00:00 2001 From: kichik Date: Sun, 15 Jun 2003 17:29:39 +0000 Subject: [PATCH] StrCmp not IntCmp (thanks deguix) git-svn-id: https://svn.code.sf.net/p/nsis/code/NSIS/trunk@2648 212acab6-be3b-0410-9dea-997c60f758d6 --- Contrib/System/System.nsi | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Contrib/System/System.nsi b/Contrib/System/System.nsi index 834908df..464bc52e 100644 --- a/Contrib/System/System.nsi +++ b/Contrib/System/System.nsi @@ -44,7 +44,7 @@ enumok: ; Is it DRIVE_FIXED? System::Call '${sysGetDriveType} (i r1) .r3' - IntCmp $3 ${DRIVE_FIXED} 0 enumnext + StrCmp $3 ${DRIVE_FIXED} 0 enumnext ; Drive space System::Call '${sysGetDiskFreeSpaceEx}(i r1, .r3, .r4, .r5)'