commit 6c3fd6751fa737a6a00ad55b670a4b7a31e8821b parent a0570343d313a191bb552c9986c34e47cde3cbbf Author: Bart Polot <bart@net.in.tum.de> Date: Wed, 15 Oct 2014 00:55:35 +0000 - fix faux compiler warnings Diffstat:
| M | src/util/gnunet-ecc.c | | | 3 | ++- |
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/src/util/gnunet-ecc.c b/src/util/gnunet-ecc.c @@ -108,7 +108,8 @@ create_keys (const char *fn, const char *prefix) } else { - mask = 0; + /* Just so old (debian) versions of GCC calm down with the warnings. */ + mask = target_byte = 0; } s = GNUNET_CRYPTO_eddsa_public_key_to_string (&target_pub); fprintf (stderr,