Merge branch 'sb/help-unknown-command-sort-fix'

Code cleanup.

* sb/help-unknown-command-sort-fix:
  help: fix the size passed to qsort
This commit is contained in:
Junio C Hamano 2014-09-26 14:39:46 -07:00
Родитель 5500095ff4 d333ac1785
Коммит 5d7f49dc79
1 изменённых файлов: 1 добавлений и 1 удалений

2
help.c
Просмотреть файл

@ -305,7 +305,7 @@ const char *help_unknown_cmd(const char *cmd)
add_cmd_list(&main_cmds, &aliases);
add_cmd_list(&main_cmds, &other_cmds);
qsort(main_cmds.names, main_cmds.cnt,
sizeof(main_cmds.names), cmdname_compare);
sizeof(*main_cmds.names), cmdname_compare);
uniq(&main_cmds);
/* This abuses cmdname->len for levenshtein distance */