https://git.reactos.org/?p=reactos.git;a=commitdiff;h=bae083355d440601dd5ec…
commit bae083355d440601dd5ec81fdfea7a6be7cb6251
Author: Mark Jansen <mark.jansen(a)reactos.org>
AuthorDate: Tue Apr 2 21:23:58 2019 +0200
Commit: Mark Jansen <mark.jansen(a)reactos.org>
CommitDate: Wed Apr 3 19:44:16 2019 +0200
[SYSSETUP] Add a missing break
---
dll/cpl/timedate/timezone.c | 1 +
dll/win32/syssetup/wizard.c | 3 ++-
sdk/include/reactos/libs/syssetup/syssetup.h | 2 +-
3 files changed, 4 insertions(+), 2 deletions(-)
diff --git a/dll/cpl/timedate/timezone.c b/dll/cpl/timedate/timezone.c
index d3061bbd08..95a4e33220 100644
--- a/dll/cpl/timedate/timezone.c
+++ b/dll/cpl/timedate/timezone.c
@@ -11,6 +11,7 @@
#include "timedate.h"
+// See also sdk/include/reactos/libs/syssetup/syssetup.h
typedef struct _TZ_INFO
{
LONG Bias;
diff --git a/dll/win32/syssetup/wizard.c b/dll/win32/syssetup/wizard.c
index 2d95f1cfe1..06219b941e 100644
--- a/dll/win32/syssetup/wizard.c
+++ b/dll/win32/syssetup/wizard.c
@@ -1645,6 +1645,7 @@ ThemePageDlgProc(HWND hwndDlg,
break;
}
}
+ break;
case WM_NOTIFY:
switch (((LPNMHDR)lParam)->code)
{
@@ -2487,7 +2488,7 @@ ProcessSetupInf(
L"sourcepath",
&InfContext))
{
- DPRINT1("Error: Cannot find UnattendSetupEnabled Key! %d\n",
GetLastError());
+ DPRINT1("Error: Cannot find sourcepath Key! %d\n", GetLastError());
return;
}
diff --git a/sdk/include/reactos/libs/syssetup/syssetup.h
b/sdk/include/reactos/libs/syssetup/syssetup.h
index a29a342bb4..ddd7bce85b 100644
--- a/sdk/include/reactos/libs/syssetup/syssetup.h
+++ b/sdk/include/reactos/libs/syssetup/syssetup.h
@@ -23,7 +23,7 @@
#ifndef __SYSSETUP_H_INCLUDED__
#define __SYSSETUP_H_INCLUDED__
-
+// See also dll/cpl/timedate/timezone.c
typedef struct _TZ_INFO
{
LONG Bias;