mirror of
https://github.com/reactos/reactos.git
synced 2025-07-28 17:01:49 +00:00
[SYSSETUP] Fix broken build on RosBE2.1.6 CORE-17028
The build broke due to a typo introduced by
0.4.15-dev-275-g
612729b092
../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
This commit is contained in:
parent
a21d959e90
commit
4cbb21761c
1 changed files with 1 additions and 1 deletions
|
@ -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);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue