From f55a192c15f5f176efb994e1b03f869d814c1a62 Mon Sep 17 00:00:00 2001
From: Jochen Topf <jochen@topf.org>
Date: Fri, 14 Feb 2025 15:54:35 +0100
Subject: [PATCH] Fix include guard names

They were not in line with the file names.
---
 src/expire-config.hpp | 6 +++---
 src/lua-setup.hpp     | 6 +++---
 2 files changed, 6 insertions(+), 6 deletions(-)

diff --git a/src/expire-config.hpp b/src/expire-config.hpp
index 832ba6d64..2ce64fd57 100644
--- a/src/expire-config.hpp
+++ b/src/expire-config.hpp
@@ -1,5 +1,5 @@
-#ifndef OSM2PGSQL_FLEX_EXPIRE_CONFIG_HPP
-#define OSM2PGSQL_FLEX_EXPIRE_CONFIG_HPP
+#ifndef OSM2PGSQL_EXPIRE_CONFIG_HPP
+#define OSM2PGSQL_EXPIRE_CONFIG_HPP
 
 /**
  * SPDX-License-Identifier: GPL-2.0-or-later
@@ -45,4 +45,4 @@ struct expire_config_t
 
 }; // struct expire_config_t
 
-#endif // OSM2PGSQL_FLEX_EXPIRE_CONFIG_HPP
+#endif // OSM2PGSQL_EXPIRE_CONFIG_HPP
diff --git a/src/lua-setup.hpp b/src/lua-setup.hpp
index 6d6fa0b12..95dbff626 100644
--- a/src/lua-setup.hpp
+++ b/src/lua-setup.hpp
@@ -1,5 +1,5 @@
-#ifndef OSM2PGSQL_LUA_CONFIG_HPP
-#define OSM2PGSQL_LUA_CONFIG_HPP
+#ifndef OSM2PGSQL_LUA_SETUP_HPP
+#define OSM2PGSQL_LUA_SETUP_HPP
 
 /**
  * SPDX-License-Identifier: GPL-2.0-or-later
@@ -17,4 +17,4 @@ struct lua_State;
 void setup_lua_environment(lua_State *lua_state, std::string const &filename,
                            bool append_mode);
 
-#endif // OSM2PGSQL_LUA_CONFIG_HPP
+#endif // OSM2PGSQL_LUA_SETUP_HPP