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>
This commit is contained in:

committed by
Junio C Hamano

parent
a9a884aea5
commit
1b5294de40
@ -1531,8 +1531,7 @@ static void read_v2_anomalous_offsets(struct packed_git *p,
|
||||
opts->anomaly[opts->anomaly_nr++] = ntohl(idx2[off * 2 + 1]);
|
||||
}
|
||||
|
||||
if (1 < opts->anomaly_nr)
|
||||
qsort(opts->anomaly, opts->anomaly_nr, sizeof(uint32_t), cmp_uint32);
|
||||
QSORT(opts->anomaly, opts->anomaly_nr, cmp_uint32);
|
||||
}
|
||||
|
||||
static void read_idx_option(struct pack_idx_option *opts, const char *pack_name)
|
||||
|
Reference in New Issue
Block a user