aboutsummaryrefslogtreecommitdiff
path: root/src/nvim/mbyte.c
diff options
context:
space:
mode:
authorbfredl <bjorn.linse@gmail.com>2022-05-05 18:42:00 +0200
committerGitHub <noreply@github.com>2022-05-05 18:42:00 +0200
commitd4f47fe17d5168304b73df26a5d8fe3b11832128 (patch)
treede2c438ed9b0936795ae4f99e9a6e4df2c6ffe2f /src/nvim/mbyte.c
parent3e3e9c31255cd5c01bce96c68e5b1cf8e26a9f4d (diff)
parent9a671e6a24243a5ff2879599d91ab5aec8b4e77d (diff)
downloadrneovim-d4f47fe17d5168304b73df26a5d8fe3b11832128.tar.gz
rneovim-d4f47fe17d5168304b73df26a5d8fe3b11832128.tar.bz2
rneovim-d4f47fe17d5168304b73df26a5d8fe3b11832128.zip
Merge pull request #18416 from dundargoc/refactor/remove-char_u
refactor/remove char u
Diffstat (limited to 'src/nvim/mbyte.c')
-rw-r--r--src/nvim/mbyte.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/nvim/mbyte.c b/src/nvim/mbyte.c
index 10744a86dc..6dbbb17da9 100644
--- a/src/nvim/mbyte.c
+++ b/src/nvim/mbyte.c
@@ -562,11 +562,11 @@ int utf_ptr2cells_len(const char_u *p, int size)
/// @param str The source string, may not be NULL, must be a NUL-terminated
/// string.
/// @return The number of cells occupied by string `str`
-size_t mb_string2cells(const char_u *str)
+size_t mb_string2cells(const char *str)
{
size_t clen = 0;
- for (const char_u *p = str; *p != NUL; p += utfc_ptr2len(p)) {
+ for (const char_u *p = (char_u *)str; *p != NUL; p += utfc_ptr2len(p)) {
clen += utf_ptr2cells(p);
}