diff options
author | Bram Moolenaar <Bram@vim.org> | 2011-10-20 18:24:22 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2011-10-20 18:24:22 +0200 |
commit | 62dbdc4a5ae16900d17473dbfe3be3acea321bf0 (patch) | |
tree | 0b6ee730812c90da066596f30b1a503ff5798762 /src/os_win16.c | |
parent | 667b4d2db96fbdb8d19d413138ce45d56bccbe0f (diff) | |
download | vim-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.c | 4 |
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); |