comparison src/evalfunc.c @ 16251:8e168aa08310 v8.1.1130

patch 8.1.1130: MS-Windows: warning for unused variable commit https://github.com/vim/vim/commit/11640238289969a278876596a380952ffe25aad3 Author: Bram Moolenaar <Bram@vim.org> Date: Sat Apr 6 20:53:29 2019 +0200 patch 8.1.1130: MS-Windows: warning for unused variable Problem: MS-Windows: warning for unused variable. Solution: Remove the variable.
author Bram Moolenaar <Bram@vim.org>
date Sat, 06 Apr 2019 21:00:06 +0200
parents c1698187c482
children f28ef3d27f91
comparison
equal deleted inserted replaced
16250:aeb340e0e485 16251:8e168aa08310
9194 char_u *path; 9194 char_u *path;
9195 garray_T ga; 9195 garray_T ga;
9196 int i; 9196 int i;
9197 #ifdef MSWIN 9197 #ifdef MSWIN
9198 char_u *buf, *p; 9198 char_u *buf, *p;
9199 WIN32_FIND_DATA fb;
9200 int ok; 9199 int ok;
9201 HANDLE hFind = INVALID_HANDLE_VALUE; 9200 HANDLE hFind = INVALID_HANDLE_VALUE;
9202 WIN32_FIND_DATAW wfb; 9201 WIN32_FIND_DATAW wfb;
9203 WCHAR *wn = NULL; // UCS-2 name, NULL when not used. 9202 WCHAR *wn = NULL; // UCS-2 name, NULL when not used.
9204 #endif 9203 #endif