diff options
author | bfredl <bjorn.linse@gmail.com> | 2022-05-01 10:35:48 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-05-01 10:35:48 +0200 |
commit | d9dcfd0219d51add74e6d93d5d1408be4b47bd97 (patch) | |
tree | f2144153081387585579c3d1440f78bdf1992331 /src/nvim/window.c | |
parent | 07660193a38918aa6a17ec691c4e8b021436ed67 (diff) | |
parent | af782a630633ffe0cb082bda974b24d4f577313e (diff) | |
download | rneovim-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/window.c')
-rw-r--r-- | src/nvim/window.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/window.c b/src/nvim/window.c index 7d96532b8e..90f7145f51 100644 --- a/src/nvim/window.c +++ b/src/nvim/window.c @@ -489,7 +489,7 @@ wingotofile: setpcmark(); if (win_split(0, 0) == OK) { RESET_BINDING(curwin); - if (do_ecmd(0, ptr, NULL, NULL, ECMD_LASTL, ECMD_HIDE, NULL) == FAIL) { + if (do_ecmd(0, (char *)ptr, NULL, NULL, ECMD_LASTL, ECMD_HIDE, NULL) == FAIL) { // Failed to open the file, close the window opened for it. win_close(curwin, false, false); goto_tabpage_win(oldtab, oldwin); |