commit.c: rearrange xcalloc arguments
commitc4a7b0092bbe39a6b05ddd65a6b3e45565203367
authorBrian Gesiak <modocache@gmail.com>
Mon, 26 May 2014 15:33:45 +0000 (27 00:33 +0900)
committerJunio C Hamano <gitster@pobox.com>
Tue, 27 May 2014 21:00:43 +0000 (27 14:00 -0700)
treee5a1d5c16930ccc0bddd8ba73b14589971f44de6
parent380694544d3e5e882c0f62be372c666911c405b2
commit.c: rearrange xcalloc arguments

xcalloc() takes two arguments: the number of elements and their size.
reduce_heads() passes the arguments in reverse order, passing the
size of a commit*, followed by the number of commit* to be allocated.

Rearrange them so they are in the correct order.

Signed-off-by: Brian Gesiak <modocache@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
commit.c