diff options
author | zeertzjq <zeertzjq@outlook.com> | 2023-01-09 17:37:21 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-01-09 17:37:21 +0800 |
commit | d64549bc4e795cabca270f91b483ba9df7006b85 (patch) | |
tree | 851c079d82cc3c20d08eb82a88a2b59a0e24d5e2 /src/nvim/optionstr.c | |
parent | 53adccb6e0292f7ba5524121c0200a73aec977a6 (diff) | |
parent | 7ba39b4378743ceefdd52186e64acd6af6f8e5a2 (diff) | |
download | rneovim-d64549bc4e795cabca270f91b483ba9df7006b85.tar.gz rneovim-d64549bc4e795cabca270f91b483ba9df7006b85.tar.bz2 rneovim-d64549bc4e795cabca270f91b483ba9df7006b85.zip |
Merge pull request #21488 from dundargoc/refactor/char_u/16.1
refactor/char u/16.1
Diffstat (limited to 'src/nvim/optionstr.c')
-rw-r--r-- | src/nvim/optionstr.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/optionstr.c b/src/nvim/optionstr.c index 83bbf0ba33..0c9d428ce7 100644 --- a/src/nvim/optionstr.c +++ b/src/nvim/optionstr.c @@ -1034,7 +1034,7 @@ char *did_set_string_option(int opt_idx, char **varp, char *oldval, char *errbuf if (errbuf != NULL) { vim_snprintf(errbuf, errbuflen, _("E526: Missing number after <%s>"), - transchar_byte(*(s - 1))); + transchar_byte((uint8_t)(*(s - 1)))); errmsg = errbuf; } else { errmsg = ""; |