diff options
author | Bram Moolenaar <Bram@vim.org> | 2017-08-17 11:22:46 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2017-08-17 11:22:46 +0200 |
commit | ade59630c737026edfaeff2d76985b304a34afb5 (patch) | |
tree | 8e6279e22e1e36212ae370c806680c0c1a863b51 /src/os_win32.c | |
parent | 9e13aa7729486d79a530ecae1a7a95d10da27d61 (diff) | |
download | vim-git-ade59630c737026edfaeff2d76985b304a34afb5.tar.gz |
patch 8.0.0950: MS-Windows: wrong #ifdef, compiler warningsv8.0.0950
Problem: MS-Windows: wrong #ifdef, compiler warnings for signed/unsigned.
Solution: Change variable type. Change TERMINAL to FEAT_TERMINAL.
Diffstat (limited to 'src/os_win32.c')
-rw-r--r-- | src/os_win32.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/os_win32.c b/src/os_win32.c index 1098d7f73..f1e1cad8e 100644 --- a/src/os_win32.c +++ b/src/os_win32.c @@ -5072,7 +5072,7 @@ make_job_env(garray_T *gap, dict_T *env) --todo; if (wkey != NULL && wval != NULL) { - int n; + size_t n; size_t lkey = wcslen(wkey); size_t lval = wcslen(wval); |