summaryrefslogtreecommitdiff
path: root/src/os_win16.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/os_win16.c')
-rw-r--r--src/os_win16.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/os_win16.c b/src/os_win16.c
index c4d9cfc88..0be6c6316 100644
--- a/src/os_win16.c
+++ b/src/os_win16.c
@@ -243,9 +243,9 @@ mch_system(char *cmd, int options)
/* Wait for the command to terminate before continuing */
while (GetModuleUsage((HINSTANCE)h_module) > 0 && again )
{
- while( PeekMessage( &msg, NULL, 0, 0, PM_REMOVE ) && again )
+ while (PeekMessage(&msg, NULL, 0, 0, PM_REMOVE) && again)
{
- if(msg.message == WM_QUIT)
+ if (msg.message == WM_QUIT)
{
PostQuitMessage(msg.wParam);