From dbbc61bc4e1e0f1f8435b8562e24620a5385b5f4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Corn=C3=A9=20Plooy?= Date: Mon, 5 Mar 2018 10:47:57 +0100 Subject: [PATCH] Coding style fix --- common/utils.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/common/utils.c b/common/utils.c index 6011a417f..6995697e3 100644 --- a/common/utils.c +++ b/common/utils.c @@ -52,8 +52,7 @@ const char *tmpctx_any(void) { struct tmpctx *t = list_top(&tmpctxs, struct tmpctx, list); - if (t) - { + if (t) { assert(t->file != NULL); return tal_fmt(t, "%s:%u", t->file, t->line); }