mirror of
https://github.com/neovim/neovim.git
synced 2025-09-28 22:18:33 +00:00
refactor: replace char_u with char
Work on https://github.com/neovim/neovim/issues/459
This commit is contained in:
@@ -3426,7 +3426,7 @@ int verbose_open(void)
|
||||
// Only give the error message once.
|
||||
verbose_did_open = true;
|
||||
|
||||
verbose_fd = os_fopen((char *)p_vfile, "a");
|
||||
verbose_fd = os_fopen(p_vfile, "a");
|
||||
if (verbose_fd == NULL) {
|
||||
semsg(_(e_notopen), p_vfile);
|
||||
return FAIL;
|
||||
|
Reference in New Issue
Block a user