Browse Source

fix "missing braces around initializer"

Fixes #20
ppa-0.6.1
zhibiao.pan 9 years ago
committed by Rusty Russell
parent
commit
e8a83c3f76
  1. 2
      daemon/bitcoind.c

2
daemon/bitcoind.c

@ -200,7 +200,7 @@ static void process_transactions(struct bitcoin_cli *bcli)
end = json_next(tokens); end = json_next(tokens);
for (t = tokens + 1; t < end; t = json_next(t)) { 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; const jsmntok_t *txidtok, *conftok, *blkindxtok, *blktok;
unsigned int conf; unsigned int conf;
bool is_coinbase; bool is_coinbase;

Loading…
Cancel
Save