diff options
author | René Scharfe <l.s.r@web.de> | 2016-09-30 01:40:14 +0200 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2016-09-30 05:40:23 +0200 |
commit | 1b5294de406146c4ec321a59e07a5566c435cc2e (patch) | |
tree | 979dc60014fac5535ee633cb5fdbcc1eb037a269 /builtin/shortlog.c | |
parent | coccicheck: use --all-includes by default (diff) | |
download | git-1b5294de406146c4ec321a59e07a5566c435cc2e.tar.xz git-1b5294de406146c4ec321a59e07a5566c435cc2e.zip |
use QSORT, part 2
Convert two more qsort(3) calls to QSORT to reduce code size and for
better safety and consistency.
Signed-off-by: Rene Scharfe <l.s.r@web.de>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to '')
-rw-r--r-- | builtin/shortlog.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/builtin/shortlog.c b/builtin/shortlog.c index 25fa8a6aed..ba0e1154a9 100644 --- a/builtin/shortlog.c +++ b/builtin/shortlog.c @@ -308,7 +308,7 @@ void shortlog_output(struct shortlog *log) struct strbuf sb = STRBUF_INIT; if (log->sort_by_number) - qsort(log->list.items, log->list.nr, sizeof(struct string_list_item), + QSORT(log->list.items, log->list.nr, log->summary ? compare_by_counter : compare_by_list); for (i = 0; i < log->list.nr; i++) { const struct string_list_item *item = &log->list.items[i]; |