diff options
author | Bram Moolenaar <Bram@vim.org> | 2022-05-12 20:35:35 +0100 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2022-05-12 20:35:35 +0100 |
commit | 9f1983de4e8293bae32fdab72a459b1b64bf767f (patch) | |
tree | 15b189fe27c86afd6b88e1d9db2c2e1fdfa3bc56 /src/os_mswin.c | |
parent | 3f32a5f1601ab2b0eba0caad00d4c26fb86a02a2 (diff) | |
download | vim-git-9f1983de4e8293bae32fdab72a459b1b64bf767f.tar.gz |
patch 8.2.4945: inconsistent use of white spacev8.2.4945
Problem: Inconsistent use of white space.
Solution: Use Tabs and Spaces consistently.
Diffstat (limited to 'src/os_mswin.c')
-rw-r--r-- | src/os_mswin.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/os_mswin.c b/src/os_mswin.c index fb9a3beb3..6310a1aaf 100644 --- a/src/os_mswin.c +++ b/src/os_mswin.c @@ -515,13 +515,13 @@ wstat_symlink_aware(const WCHAR *name, stat_T *stp) char_u * resolve_appexeclink(char_u *fname) { - DWORD attr = 0; - int idx; - WCHAR *p, *end, *wname; + DWORD attr = 0; + int idx; + WCHAR *p, *end, *wname; // The buffer size is arbitrarily chosen to be "big enough" (TM), the // ceiling should be around 16k. - char_u buf[4096]; - DWORD buf_len = sizeof(buf); + char_u buf[4096]; + DWORD buf_len = sizeof(buf); REPARSE_DATA_BUFFER *rb = (REPARSE_DATA_BUFFER *)buf; wname = enc_to_utf16(fname, NULL); |