diff options
author | bfredl <bjorn.linse@gmail.com> | 2024-06-11 10:25:32 +0200 |
---|---|---|
committer | bfredl <bjorn.linse@gmail.com> | 2024-06-11 14:53:52 +0200 |
commit | bbd2f340a2895ed59785f952b2585e6590602cad (patch) | |
tree | bf73f1cd76fde557a2353acfecdc385e66ee2103 /src/nvim/path.c | |
parent | d8e384b7bfd5829e5ff5006202faa584b3211e84 (diff) | |
download | rneovim-bbd2f340a2895ed59785f952b2585e6590602cad.tar.gz rneovim-bbd2f340a2895ed59785f952b2585e6590602cad.tar.bz2 rneovim-bbd2f340a2895ed59785f952b2585e6590602cad.zip |
refactor(memory): use builtin strcat() instead of STRCAT()
The latter was mostly relevant with the past char_u madness.
NOTE: STRCAT also functioned as a counterfeit "NOLINT" for clint
apparently. But NOLINT-ing every usecase is just the same as disabling
the check entirely.
Diffstat (limited to 'src/nvim/path.c')
-rw-r--r-- | src/nvim/path.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/nvim/path.c b/src/nvim/path.c index d782d1a989..aa630038a8 100644 --- a/src/nvim/path.c +++ b/src/nvim/path.c @@ -962,7 +962,7 @@ static void uniquefy_paths(garray_T *gap, char *pattern) char *file_pattern = xmalloc(len + 2); file_pattern[0] = '*'; file_pattern[1] = NUL; - STRCAT(file_pattern, pattern); + strcat(file_pattern, pattern); char *pat = file_pat_to_reg_pat(file_pattern, NULL, NULL, true); xfree(file_pattern); if (pat == NULL) { @@ -1065,7 +1065,7 @@ static void uniquefy_paths(garray_T *gap, char *pattern) rel_path = xmalloc(strlen(short_name) + strlen(PATHSEPSTR) + 2); STRCPY(rel_path, "."); add_pathsep(rel_path); - STRCAT(rel_path, short_name); + strcat(rel_path, short_name); xfree(fnames[i]); fnames[i] = rel_path; |