aboutsummaryrefslogtreecommitdiff
path: root/src/nvim/os/stdpaths.c
diff options
context:
space:
mode:
authorii14 <59243201+ii14@users.noreply.github.com>2023-05-16 05:33:03 +0200
committerGitHub <noreply@github.com>2023-05-16 11:33:03 +0800
commitd36dd2bae8e899b40cc21603e600a5046213bc36 (patch)
treeca7689e0415f3d0d8199eb89a9578a48e069981c /src/nvim/os/stdpaths.c
parent66b7f62542de0c9910f0e701a4c51834cfea3bab (diff)
downloadrneovim-d36dd2bae8e899b40cc21603e600a5046213bc36.tar.gz
rneovim-d36dd2bae8e899b40cc21603e600a5046213bc36.tar.bz2
rneovim-d36dd2bae8e899b40cc21603e600a5046213bc36.zip
refactor: use xstrl{cpy,cat} on IObuff (#23648)
Replace usage of STR{CPY,CAT} with xstrl{cpy,cat} when using on IObuff Co-authored-by: ii14 <ii14@users.noreply.github.com>
Diffstat (limited to 'src/nvim/os/stdpaths.c')
-rw-r--r--src/nvim/os/stdpaths.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/os/stdpaths.c b/src/nvim/os/stdpaths.c
index 5235828f7a..8b62b9e895 100644
--- a/src/nvim/os/stdpaths.c
+++ b/src/nvim/os/stdpaths.c
@@ -130,7 +130,7 @@ char *get_xdg_home(const XDGVarType idx)
xstrlcpy(IObuff, appname, appname_len + 1);
#if defined(MSWIN)
if (idx == kXDGDataHome || idx == kXDGStateHome) {
- STRCAT(IObuff, "-data");
+ xstrlcat(IObuff, "-data", IOSIZE);
}
#endif
dir = concat_fnames_realloc(dir, IObuff, true);