From: Brian Gesiak Date: Mon, 26 May 2014 15:33:53 +0000 (+0900) Subject: pack-revindex.c: rearrange xcalloc arguments X-Git-Tag: v2.0.3~14^2~3 X-Git-Url: https://git.lorimer.id.au/gitweb.git/diff_plain/48d547fb381b311fd327f84f1dff11228303c872?hp=--cc pack-revindex.c: rearrange xcalloc arguments xcalloc() takes two arguments: the number of elements and their size. init_pack_revindex() passes the arguments in reverse order, passing the size of a pack_revindex, followed by the number to allocate. Rearrange them so they are in the correct order. Signed-off-by: Brian Gesiak Signed-off-by: Junio C Hamano --- 48d547fb381b311fd327f84f1dff11228303c872 diff --git a/pack-revindex.c b/pack-revindex.c index 5bd7c61980..5c8376e978 100644 --- a/pack-revindex.c +++ b/pack-revindex.c @@ -45,7 +45,7 @@ static void init_pack_revindex(void) if (!num) return; pack_revindex_hashsz = num * 11; - pack_revindex = xcalloc(sizeof(*pack_revindex), pack_revindex_hashsz); + pack_revindex = xcalloc(pack_revindex_hashsz, sizeof(*pack_revindex)); for (p = packed_git; p; p = p->next) { num = pack_revindex_ix(p); num = - 1 - num;