mirror of
https://github.com/neovim/neovim.git
synced 2025-09-26 21:18:34 +00:00
refactor: reduce number of explicit char casts (#16077)
* refactor: reduce number of explicit char casts
This commit is contained in:
@@ -699,7 +699,7 @@ void msgmore(long n)
|
||||
xstrlcat(msg_buf, _(" (Interrupted)"), MSG_BUF_LEN);
|
||||
}
|
||||
if (msg(msg_buf)) {
|
||||
set_keep_msg((char_u *)msg_buf, 0);
|
||||
set_keep_msg(msg_buf, 0);
|
||||
keep_msg_more = true;
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user