On Mon, Mar 21, 2011 at 6:16 PM, Junio C Hamano <gitster@xxxxxxxxx> wrote: > +void update_index_if_able(struct index_state *istate, struct lock_file *lockfile) > +{ > + if (istate->cache_changed) && > + !write_index(istate, lockfile->fd)) Mismatched parenthesis? Should be sth like + if (istate->cache_changed && + !write_index(istate, lockfile->fd)) -- Piotr Krukowiecki -- 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