Coding style fix

This commit is contained in:
Corné Plooy 2018-03-05 10:47:57 +01:00 committed by Christian Decker
parent 71c39e96f3
commit dbbc61bc4e

View File

@ -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);
}