diff options
author | Dundar Göc <gocdundar@gmail.com> | 2021-10-12 18:21:12 +0200 |
---|---|---|
committer | Dundar Göc <gocdundar@gmail.com> | 2021-10-19 15:20:33 +0200 |
commit | 6059784770c4c88fb6fe528b9f7634192fa1164e (patch) | |
tree | cc91a6759c739044a5a338bc938cfa033d7273ac /src/nvim/fileio.c | |
parent | 38dd53c525054daf83dba27d7d46e90e8b41fa50 (diff) | |
download | rneovim-6059784770c4c88fb6fe528b9f7634192fa1164e.tar.gz rneovim-6059784770c4c88fb6fe528b9f7634192fa1164e.tar.bz2 rneovim-6059784770c4c88fb6fe528b9f7634192fa1164e.zip |
refactor: remove space after star
Diffstat (limited to 'src/nvim/fileio.c')
-rw-r--r-- | src/nvim/fileio.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/fileio.c b/src/nvim/fileio.c index e4b4232337..4a33d74011 100644 --- a/src/nvim/fileio.c +++ b/src/nvim/fileio.c @@ -4684,7 +4684,7 @@ int vim_rename(const char_u *from, const char_u *to) } STRCPY(tempname, from); for (n = 123; n < 99999; n++) { - char * tail = (char *)path_tail(tempname); + char *tail = (char *)path_tail(tempname); snprintf(tail, (MAXPATHL + 1) - (tail - (char *)tempname - 1), "%d", n); if (!os_path_exists(tempname)) { |