Am 28.01.21 um 17:24 schrieb Derrick Stolee via GitGitGadget: > + /* rearrange array */ > + dup = xcalloc(cnt, sizeof(struct commit *)); You could use CALLOC_ARRAY instead here, which is shorter and uses the correct type automatically. Or -- seeing that the next line overwrites all items anyway -- ALLOC_ARRAY. > + COPY_ARRAY(dup, array, cnt); René