summaryrefslogtreecommitdiff
path: root/src/os_mswin.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/os_mswin.c')
-rw-r--r--src/os_mswin.c10
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);