build: treat clang-tidy warnings as errors (#22238)

This commit is contained in:
dundargoc
2023-02-12 17:41:54 +01:00
committed by GitHub
parent f573fcbc0d
commit 47638706a3
3 changed files with 3 additions and 2 deletions

View File

@@ -923,7 +923,7 @@ int do_record(int c)
dict_T *dict = get_v_event(&save_v_event);
// The recorded text contents.
char *p = (char *)get_recorded();
char *p = get_recorded();
if (p != NULL) {
// Remove escaping for K_SPECIAL in multi-byte chars.
vim_unescape_ks(p);