From 439dc0f99164ac3f5e185ae475c311f9ec00f44f Mon Sep 17 00:00:00 2001 From: Rusty Russell Date: Mon, 26 Mar 2018 10:35:34 +1030 Subject: [PATCH] gossipd/gossip_store.h: fix check-source for new source file header guards Signed-off-by: Rusty Russell --- gossipd/gossip_store.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/gossipd/gossip_store.h b/gossipd/gossip_store.h index bb0a9a69d..9ab7e33d8 100644 --- a/gossipd/gossip_store.h +++ b/gossipd/gossip_store.h @@ -1,5 +1,5 @@ -#ifndef GOSSIPD_GOSSIP_STORE_H -#define GOSSIPD_GOSSIP_STORE_H +#ifndef LIGHTNING_GOSSIPD_GOSSIP_STORE_H +#define LIGHTNING_GOSSIPD_GOSSIP_STORE_H #include "config.h" @@ -44,4 +44,4 @@ void gossip_store_add_channel_update(struct gossip_store *gs, void gossip_store_add_node_announcement(struct gossip_store *gs, const u8 *gossip_msg); -#endif /* GOSSIPD_GOSSIP_STORE_H */ +#endif /* LIGHTNING_GOSSIPD_GOSSIP_STORE_H */