From aa9edc842739fe13aa24277d3a68b4045bd0386a Mon Sep 17 00:00:00 2001 From: kichik Date: Sun, 30 Jul 2006 11:48:47 +0000 Subject: [PATCH] fixed bug #1504772 - Sources/Platform.h type definitions are not 64bit-safe git-svn-id: https://svn.code.sf.net/p/nsis/code/NSIS/trunk@4712 212acab6-be3b-0410-9dea-997c60f758d6 --- Source/Platform.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/Platform.h b/Source/Platform.h index 5499ce4b..ca9067a3 100644 --- a/Source/Platform.h +++ b/Source/Platform.h @@ -16,7 +16,7 @@ // basic types typedef unsigned char BYTE, *PBYTE, *LPBYTE; typedef unsigned short WORD, *LPWORD; -typedef unsigned long DWORD, *LPDWORD; +typedef unsigned int DWORD, *LPDWORD; typedef short SHORT; typedef unsigned short USHORT; typedef unsigned int UINT;