mirror of
https://github.com/neovim/neovim.git
synced 2025-09-18 17:28:23 +00:00
refactor: reduce number of explicit char casts (#16077)
* refactor: reduce number of explicit char casts
This commit is contained in:
@@ -566,7 +566,7 @@ static void discard_exception(except_T *excp, bool was_finished)
|
||||
} else {
|
||||
verbose_leave();
|
||||
}
|
||||
xstrlcpy((char *)IObuff, (const char *)saved_IObuff, IOSIZE);
|
||||
STRLCPY(IObuff, saved_IObuff, IOSIZE);
|
||||
xfree(saved_IObuff);
|
||||
}
|
||||
if (excp->type != ET_INTERRUPT) {
|
||||
|
Reference in New Issue
Block a user