diff options
author | Bram Moolenaar <Bram@vim.org> | 2009-07-14 10:20:22 +0000 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2009-07-14 10:20:22 +0000 |
commit | 262735ed58cee09ef9d0f1c0377bcdf5a047a555 (patch) | |
tree | 2e7fbd92a9b2d08052ee4ece56b124667900bc27 /src/os_unix.c | |
parent | 9fa49da74755a605f7ce7741fa8a06356df8a3e1 (diff) | |
download | vim-262735ed58cee09ef9d0f1c0377bcdf5a047a555.zip |
updated for version 7.2-229
Diffstat (limited to 'src/os_unix.c')
-rw-r--r-- | src/os_unix.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/os_unix.c b/src/os_unix.c index 591b49c91..102b654a7 100644 --- a/src/os_unix.c +++ b/src/os_unix.c @@ -1138,10 +1138,10 @@ mch_suspend() * to happen). */ { - long wait; - for (wait = 0; !sigcont_received && wait <= 3L; wait++) + long wait_time; + for (wait_time = 0; !sigcont_received && wait_time <= 3L; wait_time++) /* Loop is not entered most of the time */ - mch_delay(wait, FALSE); + mch_delay(wait_time, FALSE); } # endif |