git.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: Felipe Franciosi <felipe@paradoxo.org>
To: <git@vger.kernel.org>
Cc: Felipe Franciosi <felipe@paradoxo.org>
Subject: [PATCH] Initialise hash variable to prevent compiler warnings
Date: Mon, 13 Oct 2014 15:37:21 +0100	[thread overview]
Message-ID: <1413211041-28732-1-git-send-email-felipe@paradoxo.org> (raw)

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 <felipe@paradoxo.org>
---
 test-hashmap.c |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/test-hashmap.c b/test-hashmap.c
index 07aa7ec..cc2891d 100644
--- a/test-hashmap.c
+++ b/test-hashmap.c
@@ -47,7 +47,7 @@ static struct test_entry *alloc_test_entry(int hash, char *key, int klen,
 
 static unsigned int hash(unsigned int method, unsigned int i, const char *key)
 {
-	unsigned int hash;
+	unsigned int hash = 0;
 	switch (method & 3)
 	{
 	case HASH_METHOD_FNV:
-- 
1.7.10.4

             reply	other threads:[~2014-10-13 14:37 UTC|newest]

Thread overview: 6+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2014-10-13 14:37 Felipe Franciosi [this message]
2014-10-13 20:12 ` [PATCH] Initialise hash variable to prevent compiler warnings Junio C Hamano
     [not found]   ` <CANxchRS1mGapb77hc9Ywqj_-8UeexSAWK4UK9y9M76pvoN-Yeg@mail.gmail.com>
2014-10-13 21:55     ` Felipe Franciosi
2014-10-14  1:13     ` Junio C Hamano
2014-10-14 11:44       ` Felipe Franciosi
2014-10-14 16:41         ` Junio C Hamano

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1413211041-28732-1-git-send-email-felipe@paradoxo.org \
    --to=felipe@paradoxo.org \
    --cc=git@vger.kernel.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).