diff src/os_mswin.c @ 28844:c0403cd5ca06 v8.2.4945

patch 8.2.4945: inconsistent use of white space Commit: https://github.com/vim/vim/commit/9f1983de4e8293bae32fdab72a459b1b64bf767f Author: Bram Moolenaar <Bram@vim.org> Date: Thu May 12 20:35:35 2022 +0100 patch 8.2.4945: inconsistent use of white space Problem: Inconsistent use of white space. Solution: Use Tabs and Spaces consistently.
author Bram Moolenaar <Bram@vim.org>
date Thu, 12 May 2022 21:45:06 +0200
parents 99729fe344f7
children d2ef7d649fcb
line wrap: on
line diff
--- a/src/os_mswin.c
+++ b/src/os_mswin.c
@@ -515,13 +515,13 @@ wstat_symlink_aware(const WCHAR *name, s
     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);