From e8a83c3f760e504daafcef8009eba609ab5a37d3 Mon Sep 17 00:00:00 2001 From: "zhibiao.pan" Date: Thu, 31 Mar 2016 17:36:36 +0800 Subject: [PATCH] fix "missing braces around initializer" Fixes #20 --- daemon/bitcoind.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/daemon/bitcoind.c b/daemon/bitcoind.c index 3960fcfc1..3b8d2bc79 100644 --- a/daemon/bitcoind.c +++ b/daemon/bitcoind.c @@ -200,7 +200,7 @@ static void process_transactions(struct bitcoin_cli *bcli) end = json_next(tokens); for (t = tokens + 1; t < end; t = json_next(t)) { - struct sha256_double txid, blkhash = { 0 }; + struct sha256_double txid, blkhash; const jsmntok_t *txidtok, *conftok, *blkindxtok, *blktok; unsigned int conf; bool is_coinbase;