From e7c8b95be3ec82afda3bb48e457f90c608c61fd0 Mon Sep 17 00:00:00 2001 From: conanoc Date: Fri, 23 Mar 2018 16:52:33 +0900 Subject: [PATCH] Fix include order --- common/subdaemon.c | 2 +- lightningd/log.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/common/subdaemon.c b/common/subdaemon.c index 8301068ff..4a9733e7f 100644 --- a/common/subdaemon.c +++ b/common/subdaemon.c @@ -1,5 +1,5 @@ -#include #include +#include #include #include #include diff --git a/lightningd/log.c b/lightningd/log.c index fb23d6069..aacc3921d 100644 --- a/lightningd/log.c +++ b/lightningd/log.c @@ -1,6 +1,6 @@ #include "log.h" -#include #include +#include #include #include #include