diff options
author | Dundar Göc <gocdundar@gmail.com> | 2021-10-16 17:50:51 +0200 |
---|---|---|
committer | Dundar Göc <gocdundar@gmail.com> | 2021-10-16 17:50:51 +0200 |
commit | 88ef0d3de4bb4b40eda2f9ab2e7b71280acdda05 (patch) | |
tree | ee26733c1817fa6bdf84fce92b55726f5a83b97d | |
parent | 46749faac48e9675d4b8e30793c26cd030f04963 (diff) | |
download | rneovim-88ef0d3de4bb4b40eda2f9ab2e7b71280acdda05.tar.gz rneovim-88ef0d3de4bb4b40eda2f9ab2e7b71280acdda05.tar.bz2 rneovim-88ef0d3de4bb4b40eda2f9ab2e7b71280acdda05.zip |
fixup! vim-patch:8.1.2379: using old C style comments
-rw-r--r-- | src/nvim/ex_cmds.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/ex_cmds.c b/src/nvim/ex_cmds.c index 9ebccdc550..a82d97b56c 100644 --- a/src/nvim/ex_cmds.c +++ b/src/nvim/ex_cmds.c @@ -5215,7 +5215,7 @@ int find_help_tags(const char_u *arg, int *num_matches, char_u ***matches, bool && *num_matches > 0) { // Sort the matches found on the heuristic number that is after the // tag name. - qsort((void *)*matches, (size_t)*num_matches, + qsort((void *)(*matches), (size_t)*num_matches, sizeof(char_u *), help_compare); // Delete more than TAG_MANY to reduce the size of the listing. while (*num_matches > TAG_MANY) { |