On Thu, Nov 13, 2008 at 02:20:37PM -0600, Brandon Casey wrote: > int num = ++revs->num_ignore_packed; > > revs->ignore_packed = xrealloc(revs->ignore_packed, > - sizeof(const char **) * (num + 1)); > + sizeof(const char *) * (num + 1)); Maybe it would be even nicer as "sizeof(*revs->ignore_packed)"? -Peff -- To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html