diff options
| author | ii14 <59243201+ii14@users.noreply.github.com> | 2023-04-07 19:40:57 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-04-07 19:40:57 +0200 |
| commit | 9408f2dcf7cade2631688300e9b58eed6bc5219a (patch) | |
| tree | 152b8b6135f50619b1fb2a69719d71a180ea0792 /src/nvim/os/shell.c | |
| parent | 1d2a29f75ba7d094c8e7444c9b249a4a7211c93c (diff) | |
| download | rneovim-9408f2dcf7cade2631688300e9b58eed6bc5219a.tar.gz rneovim-9408f2dcf7cade2631688300e9b58eed6bc5219a.tar.bz2 rneovim-9408f2dcf7cade2631688300e9b58eed6bc5219a.zip | |
refactor: remove redundant const char * casts
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 e990db3296..41b176eb41 100644 --- a/src/nvim/os/shell.c +++ b/src/nvim/os/shell.c @@ -1180,7 +1180,7 @@ static size_t tokenize(const char *const str, char **const argv) } argc++; - p = (const char *)skipwhite((p + len)); + p = skipwhite((p + len)); } return argc; |