From a0ebce42566e68f07c320d6f72c8d71d5237f8e9 Mon Sep 17 00:00:00 2001 From: kichik Date: Thu, 15 Feb 2007 20:01:25 +0000 Subject: [PATCH] typo (thanks kk) git-svn-id: https://svn.code.sf.net/p/nsis/code/NSIS/trunk@4926 212acab6-be3b-0410-9dea-997c60f758d6 --- Source/DialogTemplate.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/DialogTemplate.cpp b/Source/DialogTemplate.cpp index b4a500cb..685c16ae 100644 --- a/Source/DialogTemplate.cpp +++ b/Source/DialogTemplate.cpp @@ -45,7 +45,7 @@ static inline short ConvertEndianness(short s) { #define ALIGN(dwToAlign, dwAlignOn) dwToAlign = (dwToAlign%dwAlignOn == 0) ? dwToAlign : dwToAlign - (dwToAlign%dwAlignOn) + dwAlignOn -// Reads a variany length array from seeker into readInto and advances seeker +// Reads a variant length array from seeker into readInto and advances seeker void ReadVarLenArr(LPBYTE &seeker, char* &readInto, unsigned int uCodePage) { WORD* arr = (WORD*)seeker; switch (ConvertEndianness(arr[0])) {