Add the missing space between "if" and "("

Changelog-None
This commit is contained in:
Vasil Dimov
2020-01-05 16:52:34 +01:00
committed by Christian Decker
parent 0ac91b4f99
commit 2ea91f834c
13 changed files with 16 additions and 16 deletions

View File

@@ -162,7 +162,7 @@ static struct command *read_json_request(const tal_t *ctx,
id = json_get_member(membuf_elems(&conn->mb), toks, "id");
if (id) {
cmd->id = tal(cmd, u64);
if(!json_to_u64(membuf_elems(&conn->mb), id, cmd->id))
if (!json_to_u64(membuf_elems(&conn->mb), id, cmd->id))
plugin_err("JSON id '%*.s' is not a number",
id->end - id->start,
membuf_elems(&conn->mb) + id->start);