https://git.reactos.org/?p=reactos.git;a=commitdiff;h=774f49772174d0dc7ec535...
commit 774f49772174d0dc7ec53580a9e169418e433bad Author: Mark Jansen mark.jansen@reactos.org AuthorDate: Mon Apr 22 16:24:59 2019 +0200 Commit: Mark Jansen mark.jansen@reactos.org CommitDate: Mon Apr 22 16:24:59 2019 +0200
[SYSSETUP] Fix a broken DPRINT Thanks to Thomas for spotting it. --- dll/win32/syssetup/wizard.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dll/win32/syssetup/wizard.c b/dll/win32/syssetup/wizard.c index 5a194fa931..1e541da3f1 100644 --- a/dll/win32/syssetup/wizard.c +++ b/dll/win32/syssetup/wizard.c @@ -1673,7 +1673,7 @@ ThemePageDlgProc(HWND hwndDlg, if ((pnmv->uChanged & LVIF_STATE) && (pnmv->uNewState & LVIS_SELECTED)) { int iTheme = pnmv->iItem; - DPRINT1("Selected theme: %S\n", Themes[iTheme].DisplayName); + DPRINT1("Selected theme: %u\n", Themes[iTheme].DisplayName);
if (Themes[iTheme].ThemeFile) {