From 9dd05f01291de0990970b31311d92f9725c97ee1 Mon Sep 17 00:00:00 2001 From: kichik Date: Wed, 5 Apr 2006 18:54:17 +0000 Subject: [PATCH] fixed nResult warning git-svn-id: https://svn.code.sf.net/p/nsis/code/NSIS/trunk@4642 212acab6-be3b-0410-9dea-997c60f758d6 --- Contrib/InstallOptions/InstallerOptions.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Contrib/InstallOptions/InstallerOptions.cpp b/Contrib/InstallOptions/InstallerOptions.cpp index dc837b2e..076b7b74 100644 --- a/Contrib/InstallOptions/InstallerOptions.cpp +++ b/Contrib/InstallOptions/InstallerOptions.cpp @@ -1362,7 +1362,7 @@ void WINAPI showCfgDlg() while (!g_done) { MSG msg; - int nResult = GetMessage(&msg, NULL, 0, 0); + GetMessage(&msg, NULL, 0, 0); if (!IsDialogMessage(hConfigWindow,&msg) && !IsDialogMessage(hMainWindow,&msg)) { TranslateMessage(&msg);