From e8179e489f5e1125e72550a4d49691d21fbb160c Mon Sep 17 00:00:00 2001 From: Disyer Date: Sat, 5 Aug 2023 15:44:50 +0300 Subject: [PATCH] panda: Correct header guard names (#1525) --- panda/src/express/config_express.h | 2 +- panda/src/putil/config_putil.h | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/panda/src/express/config_express.h b/panda/src/express/config_express.h index a3a16a51fa..309dec6152 100644 --- a/panda/src/express/config_express.h +++ b/panda/src/express/config_express.h @@ -56,4 +56,4 @@ extern EXPCL_PANDA_EXPRESS ConfigVariableDouble collect_tcp_interval; extern EXPCL_PANDA_EXPRESS void init_libexpress(); -#endif /* __CONFIG_UTIL_H__ */ +#endif /* __CONFIG_EXPRESS_H__ */ diff --git a/panda/src/putil/config_putil.h b/panda/src/putil/config_putil.h index dc8681b43c..b79c20bd12 100644 --- a/panda/src/putil/config_putil.h +++ b/panda/src/putil/config_putil.h @@ -11,8 +11,8 @@ * @date 2000-01-04 */ -#ifndef __CONFIG_UTIL_H__ -#define __CONFIG_UTIL_H__ +#ifndef __CONFIG_PUTIL_H__ +#define __CONFIG_PUTIL_H__ #include "pandabase.h" #include "notifyCategoryProxy.h" @@ -54,4 +54,4 @@ extern EXPCL_PANDA_PUTIL ConfigVariableBool cache_check_timestamps; extern EXPCL_PANDA_PUTIL void init_libputil(); -#endif /* __CONFIG_UTIL_H__ */ +#endif /* __CONFIG_PUTIL_H__ */