Re: [PATCH v3 11/15] ref-filter: convert variable 'width' to an unsigned int

2016-01-06 Thread Karthik Nayak
On Wed, Jan 6, 2016 at 2:42 AM, Junio C Hamano wrote: > Karthik Nayak writes: > >> In align_atom_parser() the 'width' variable is an int, which requires >> an explicit type conversion when used in strtoul_ui(). Hence make it >> an unsigned int. >> >> Helped-by: Eric Sunshine >> Signed-off-by: Ka

Re: [PATCH v3 11/15] ref-filter: convert variable 'width' to an unsigned int

2016-01-05 Thread Junio C Hamano
Karthik Nayak writes: > In align_atom_parser() the 'width' variable is an int, which requires > an explicit type conversion when used in strtoul_ui(). Hence make it > an unsigned int. > > Helped-by: Eric Sunshine > Signed-off-by: Karthik Nayak > --- Shouldn't this be done in [09/15] from the b

[PATCH v3 11/15] ref-filter: convert variable 'width' to an unsigned int

2016-01-05 Thread Karthik Nayak
In align_atom_parser() the 'width' variable is an int, which requires an explicit type conversion when used in strtoul_ui(). Hence make it an unsigned int. Helped-by: Eric Sunshine Signed-off-by: Karthik Nayak --- ref-filter.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --