refactor: replace char_u #18429

Work on https://github.com/neovim/neovim/issues/459
This commit is contained in:
dundargoc
2022-06-28 11:31:54 +02:00
committed by GitHub
parent 7e1cf6b764
commit 014a88799a
55 changed files with 518 additions and 558 deletions

View File

@@ -1846,7 +1846,7 @@ static void printdigraph(const digr_T *dp, result_T *previous)
*p++ = dp->char2;
*p++ = ' ';
*p = NUL;
msg_outtrans(buf);
msg_outtrans((char *)buf);
p = buf;
// add a space to draw a composing char on
@@ -1863,7 +1863,7 @@ static void printdigraph(const digr_T *dp, result_T *previous)
}
assert(p >= buf);
vim_snprintf((char *)p, sizeof(buf) - (size_t)(p - buf), " %3d", dp->result);
msg_outtrans(buf);
msg_outtrans((char *)buf);
}
}