mirror of
https://github.com/neovim/neovim.git
synced 2025-10-05 17:36:29 +00:00
refactor: replace char_u with char 18 (#21237)
refactor: replace char_u with char Work on https://github.com/neovim/neovim/issues/459
This commit is contained in:
@@ -172,7 +172,7 @@ static void deadly_signal(int signum)
|
||||
|
||||
ILOG("got signal %d (%s)", signum, signal_name(signum));
|
||||
|
||||
snprintf((char *)IObuff, sizeof(IObuff), "Vim: Caught deadly signal '%s'\r\n",
|
||||
snprintf(IObuff, sizeof(IObuff), "Vim: Caught deadly signal '%s'\r\n",
|
||||
signal_name(signum));
|
||||
|
||||
// Preserve files and exit.
|
||||
|
Reference in New Issue
Block a user