Christian Couder <christian.couder@xxxxxxxxx> writes: > To libify the apply functionality the 'update_index' variable should > not be static and global to the file. Let's move it into > 'struct apply_state'. > > Reviewed-by: Stefan Beller <sbeller@xxxxxxxxxx> > Signed-off-by: Christian Couder <chriscool@xxxxxxxxxxxxx> > --- > builtin/apply.c | 45 ++++++++++++++++++++++++++------------------- > 1 file changed, 26 insertions(+), 19 deletions(-) > > diff --git a/builtin/apply.c b/builtin/apply.c > index 97af6ea..635a9ff 100644 > --- a/builtin/apply.c > +++ b/builtin/apply.c > @@ -39,6 +39,7 @@ struct apply_state { > int check_index; > > int unidiff_zero; > + int update_index; This should sit right next to check_index, I would think. Otherwise looks correct. -- 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