Re: [PATCH 3/3] cmd_repack(): remove redundant local variable "nr_packs"

2013-12-17 Thread Stefan Beller
On 17.12.2013 14:43, Michael Haggerty wrote: > Its value is the same as the number of entries in the "names" > string_list, so just use "names.nr" in its place. > > Signed-off-by: Michael Haggerty Acked-by: Stefan Beller > --- > This is just a trivial simplification. Take it or leave it. > >

[PATCH 3/3] cmd_repack(): remove redundant local variable "nr_packs"

2013-12-17 Thread Michael Haggerty
Its value is the same as the number of entries in the "names" string_list, so just use "names.nr" in its place. Signed-off-by: Michael Haggerty --- This is just a trivial simplification. Take it or leave it. builtin/repack.c | 6 ++ 1 file changed, 2 insertions(+), 4 deletions(-) diff --g