From 15f7ec436c3fa43762c17dc557f4588f9930300f Mon Sep 17 00:00:00 2001 From: Rusty Russell Date: Mon, 11 Apr 2016 16:28:43 +0930 Subject: [PATCH] Fix "make check-source" Obviously, haven't run it in a while. Signed-off-by: Rusty Russell --- bitcoin/address.c | 2 +- daemon/cryptopkt.c | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/bitcoin/address.c b/bitcoin/address.c index 4506ea8ad..3c9e659a3 100644 --- a/bitcoin/address.c +++ b/bitcoin/address.c @@ -1,7 +1,7 @@ #include "address.h" #include "pubkey.h" -#include #include +#include void bitcoin_address(const struct pubkey *key, struct bitcoin_address *addr) { diff --git a/daemon/cryptopkt.c b/daemon/cryptopkt.c index 6ef7f01c4..401f8ccf8 100644 --- a/daemon/cryptopkt.c +++ b/daemon/cryptopkt.c @@ -14,10 +14,10 @@ #include #include #include -#include -#include #include #include +#include +#include #define MAX_PKT_LEN (1024 * 1024)