summaryrefslogtreecommitdiff
path: root/src/os_win16.c
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2011-10-20 18:24:22 +0200
committerBram Moolenaar <Bram@vim.org>2011-10-20 18:24:22 +0200
commit62dbdc4a5ae16900d17473dbfe3be3acea321bf0 (patch)
tree0b6ee730812c90da066596f30b1a503ff5798762 /src/os_win16.c
parent667b4d2db96fbdb8d19d413138ce45d56bccbe0f (diff)
downloadvim-git-62dbdc4a5ae16900d17473dbfe3be3acea321bf0.tar.gz
updated for version 7.3.342v7.3.342
Problem: Code not in Vim style. Solution: Fix the style. (Elias Diem)
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);