aboutsummaryrefslogtreecommitdiff
path: root/src/nvim/os/shell.c
diff options
context:
space:
mode:
authorbfredl <bjorn.linse@gmail.com>2022-05-01 10:35:48 +0200
committerGitHub <noreply@github.com>2022-05-01 10:35:48 +0200
commitd9dcfd0219d51add74e6d93d5d1408be4b47bd97 (patch)
treef2144153081387585579c3d1440f78bdf1992331 /src/nvim/os/shell.c
parent07660193a38918aa6a17ec691c4e8b021436ed67 (diff)
parentaf782a630633ffe0cb082bda974b24d4f577313e (diff)
downloadrneovim-d9dcfd0219d51add74e6d93d5d1408be4b47bd97.tar.gz
rneovim-d9dcfd0219d51add74e6d93d5d1408be4b47bd97.tar.bz2
rneovim-d9dcfd0219d51add74e6d93d5d1408be4b47bd97.zip
Merge pull request #18334 from dundargoc/refactor/remove-char_u
refactor: replace char_u variables and functions with char
Diffstat (limited to 'src/nvim/os/shell.c')
-rw-r--r--src/nvim/os/shell.c2
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.