diff options
author | Justin M. Keyes <justinkz@gmail.com> | 2021-08-27 18:08:20 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-08-27 18:08:20 -0700 |
commit | ff7f7dd26b45164a41dbc36799cb7b08ebb9f66b (patch) | |
tree | da748f3a399eab5083d9a077ad0c9faf31b3a8f8 /src/nvim/memline.c | |
parent | 32024787b6b1ef39c23bda1653c23b5dfbde9e81 (diff) | |
parent | e5d464d8e04e0745dfcbd9fc8b0e06d66cfffcbe (diff) | |
download | rneovim-ff7f7dd26b45164a41dbc36799cb7b08ebb9f66b.tar.gz rneovim-ff7f7dd26b45164a41dbc36799cb7b08ebb9f66b.tar.bz2 rneovim-ff7f7dd26b45164a41dbc36799cb7b08ebb9f66b.zip |
Merge #15433 defaults: auto-create backup dir
Diffstat (limited to 'src/nvim/memline.c')
-rw-r--r-- | src/nvim/memline.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/memline.c b/src/nvim/memline.c index 4d435bc99f..230361b997 100644 --- a/src/nvim/memline.c +++ b/src/nvim/memline.c @@ -1442,7 +1442,7 @@ recover_names ( * Append the full path to name with path separators made into percent * signs, to dir. An unnamed buffer is handled as "" (<currentdir>/"") */ -char *make_percent_swname(const char *dir, char *name) +char *make_percent_swname(const char *dir, const char *name) FUNC_ATTR_NONNULL_ARG(1) { char *d = NULL; |