aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDundar Göc <gocdundar@gmail.com>2021-10-17 12:04:06 +0200
committerDundar Göc <gocdundar@gmail.com>2021-10-17 12:04:06 +0200
commitb98383a2501007b979e491a13fcb1387f1d9101a (patch)
tree04f534fa58890ce7198213ca259728d81d1af483
parent4476d4ef171bf38a1c5a9e247606f2225b510f29 (diff)
downloadrneovim-b98383a2501007b979e491a13fcb1387f1d9101a.tar.gz
rneovim-b98383a2501007b979e491a13fcb1387f1d9101a.tar.bz2
rneovim-b98383a2501007b979e491a13fcb1387f1d9101a.zip
fixup! vim-patch:8.1.2379: using old C style comments
-rw-r--r--src/nvim/ex_cmds.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/ex_cmds.c b/src/nvim/ex_cmds.c
index a82d97b56c..cab4b353dc 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) {