[SYSSETUP] Fix broken build on RosBE2.1.6 CORE-17028
authorJoachim Henze <Joachim.Henze@reactos.org>
Tue, 19 May 2020 18:32:21 +0000 (20:32 +0200)
committerJoachim Henze <Joachim.Henze@reactos.org>
Tue, 19 May 2020 18:32:21 +0000 (20:32 +0200)
The build broke due to a typo introduced by
0.4.15-dev-275-g
612729b09272aeb693e156de6b5991891951dbf2

../dll/win32/syssetup/wizard.c: In function 'ProductPageDlgProc':
../dll/win32/syssetup/wizard.c:527:5: error: ISO C90 forbids mixed declarations and code [-Werror=declaration-
after-statement]
cc1.exe: all warnings being treated as errors

dll/win32/syssetup/wizard.c

index ae100d0..6564407 100644 (file)
@@ -523,7 +523,7 @@ ProductPageDlgProc(HWND hwndDlg, UINT uMsg, WPARAM wParam, LPARAM lParam)
     LPNMHDR lpnm;
     PSETUPDATA pSetupData;
     INT iItem;
-    WCHAR szText[64], szDefault[64];;
+    WCHAR szText[64], szDefault[64];
     HICON hIcon;
 
     pSetupData = (PSETUPDATA)GetWindowLongPtr(hwndDlg, DWLP_USER);