https://git.reactos.org/?p=reactos.git;a=commitdiff;h=bf854f53727111e0bdce2145c8478409aac940b9

commit bf854f53727111e0bdce2145c8478409aac940b9
Author:     Eric Kohl <[email protected]>
AuthorDate: Wed Sep 25 10:51:55 2019 +0200
Commit:     Eric Kohl <[email protected]>
CommitDate: Wed Sep 25 10:52:45 2019 +0200

    [POWERCFG] Fix the Indentation. No code changes!
---
 dll/cpl/powercfg/alarms.c | 33 ++++++++++++++++++---------------
 1 file changed, 18 insertions(+), 15 deletions(-)

diff --git a/dll/cpl/powercfg/alarms.c b/dll/cpl/powercfg/alarms.c
index 0782a1508a9..8cae46734fd 100644
--- a/dll/cpl/powercfg/alarms.c
+++ b/dll/cpl/powercfg/alarms.c
@@ -169,19 +169,22 @@ AlarmsDlgProc(HWND hwndDlg,
               WPARAM wParam,
               LPARAM lParam)
 {
-  UNREFERENCED_PARAMETER(lParam);
-  UNREFERENCED_PARAMETER(wParam);
-  switch(uMsg)
-  {
-    case WM_INITDIALOG:
-        if (!Ala_InitData(hwndDlg))
-        {
-            // TODO:
-            // Handle initialization error
-        }
-        return TRUE;
-    default:
-        break;
-  }
-  return FALSE;
+    UNREFERENCED_PARAMETER(lParam);
+    UNREFERENCED_PARAMETER(wParam);
+
+    switch (uMsg)
+    {
+        case WM_INITDIALOG:
+            if (!Ala_InitData(hwndDlg))
+            {
+                // TODO:
+                // Handle initialization error
+            }
+            return TRUE;
+
+        default:
+            break;
+    }
+
+    return FALSE;
 }

Reply via email to