diff options
author | Dundar Goc <gocdundar@gmail.com> | 2022-04-30 20:28:04 +0200 |
---|---|---|
committer | Dundar Goc <gocdundar@gmail.com> | 2022-04-30 23:39:17 +0200 |
commit | af782a630633ffe0cb082bda974b24d4f577313e (patch) | |
tree | 7a65343a9d6cdd926aa46db55dd263c2d9eda793 /src/nvim/os/shell.c | |
parent | 0344736aa698dc205f8f9f80609b7033308d39ca (diff) | |
download | rneovim-af782a630633ffe0cb082bda974b24d4f577313e.tar.gz rneovim-af782a630633ffe0cb082bda974b24d4f577313e.tar.bz2 rneovim-af782a630633ffe0cb082bda974b24d4f577313e.zip |
refactor: replace char_u variables and functions with char
Work on https://github.com/neovim/neovim/issues/459
Diffstat (limited to 'src/nvim/os/shell.c')
-rw-r--r-- | src/nvim/os/shell.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/os/shell.c b/src/nvim/os/shell.c index 9f22e303af..57cf4a44f5 100644 --- a/src/nvim/os/shell.c +++ b/src/nvim/os/shell.c @@ -746,7 +746,7 @@ char_u *get_cmd_output(char_u *cmd, char_u *infile, ShellOpts flags, size_t *ret } // Add the redirection stuff - char_u *command = make_filter_cmd(cmd, infile, tempname); + char_u *command = (char_u *)make_filter_cmd((char *)cmd, (char *)infile, (char *)tempname); // Call the shell to execute the command (errors are ignored). // Don't check timestamps here. |