mirror of
https://github.com/neovim/neovim.git
synced 2025-10-17 23:31:51 +00:00
refactor: replace char_u with char
Work on https://github.com/neovim/neovim/issues/459
This commit is contained in:
@@ -2292,7 +2292,7 @@ int mch_print_init(prt_settings_T *psettings, char_u *jobname, int forceit)
|
||||
|
||||
// If the user didn't specify a file name, use a temp file.
|
||||
if (psettings->outfile == NULL) {
|
||||
prt_ps_file_name = vim_tempname();
|
||||
prt_ps_file_name = (char_u *)vim_tempname();
|
||||
if (prt_ps_file_name == NULL) {
|
||||
emsg(_(e_notmp));
|
||||
return FAIL;
|
||||
|
Reference in New Issue
Block a user