Re: [PATCH] Initialise hash variable to prevent compiler warnings

2014-10-14 Thread Felipe Franciosi
On Tue, Oct 14, 2014 at 2:13 AM, Junio C Hamano gits...@pobox.com wrote: On Mon, Oct 13, 2014 at 2:53 PM, Felipe Franciosi fel...@paradoxo.org wrote: On Mon, Oct 13, 2014 at 9:12 PM, Junio C Hamano gits...@pobox.com wrote: FNV/I/IDIV10/0 covers all the possibilities of (method 3), I would

[PATCH] Initialise hash variable to prevent compiler warnings

2014-10-13 Thread Felipe Franciosi
The 'hash' variable in test-hashmap.c is not initialised properly which causes some 'gcc' versions to complain during compilation. Signed-off-by: Felipe Franciosi fel...@paradoxo.org --- test-hashmap.c |2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test-hashmap.c b/test

Re: [PATCH] Initialise hash variable to prevent compiler warnings

2014-10-13 Thread Felipe Franciosi
On Mon, Oct 13, 2014 at 10:53 PM, Felipe Franciosi fel...@paradoxo.org wrote: On Mon, Oct 13, 2014 at 9:12 PM, Junio C Hamano gits...@pobox.com wrote: Felipe Franciosi fel...@paradoxo.org writes: The 'hash' variable in test-hashmap.c is not initialised properly which causes some 'gcc