Fix WB DoEvents error
authorH.G.Muller <hgm@hgm-xboard.(none)>
Mon, 8 Sep 2014 18:12:08 +0000 (20:12 +0200)
committerH.G.Muller <hgm@hgm-xboard.(none)>
Mon, 8 Sep 2014 18:12:08 +0000 (20:12 +0200)
winboard/winboard.c

index 3515cb3..4e43c62 100644 (file)
@@ -825,7 +825,7 @@ WinMain(HINSTANCE hInstance, HINSTANCE hPrevInstance,
                    0,    /* lowest message to examine */\r
                    0))   /* highest message to examine */\r
     {\r
-       HandleMessage(msg);\r
+       HandleMessage(&msg);\r
     }\r
 \r
 \r
@@ -938,7 +938,7 @@ DoEvents ()
                     0,    /* highest message to examine */\r
                     PM_REMOVE))\r
     {\r
-       HandleMessage(msg);\r
+       HandleMessage(&msg);\r
     }\r
 }\r
 \r
@@ -4512,6 +4512,7 @@ Promotion(HWND hDlg, UINT message, WPARAM wParam, LPARAM lParam)
   char promoChar;\r
 \r
   switch (message) {\r
+\r
   case WM_INITDIALOG: /* message: initialize dialog box */\r
     /* Center the dialog over the application window */\r
     CenterWindow(hDlg, GetWindow(hDlg, GW_OWNER));\r
@@ -5737,6 +5738,7 @@ WndProc(HWND hwnd, UINT message, WPARAM wParam, LPARAM lParam)
   default:     /* Passes it on if unprocessed */\r
     return (DefWindowProc(hwnd, message, wParam, lParam));\r
   }\r
+\r
   return 0;\r
 }\r
 \r