From cf2fe07e319b25f9592fc820f98f68d524521b28 Mon Sep 17 00:00:00 2001 From: Jake Carter Date: Tue, 7 Nov 2023 18:58:16 -0600 Subject: [PATCH] Update header guard --- Libraries/MiscDrivers/Display/fonts/fonts.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Libraries/MiscDrivers/Display/fonts/fonts.h b/Libraries/MiscDrivers/Display/fonts/fonts.h index d3de704a4e9..4e77030de17 100644 --- a/Libraries/MiscDrivers/Display/fonts/fonts.h +++ b/Libraries/MiscDrivers/Display/fonts/fonts.h @@ -25,8 +25,8 @@ * or by accessing the character arrays directly. */ -#ifndef FONTS_H -#define FONTS_H +#ifndef LIBRARIES_MISCDRIVERS_DISPLAY_FONTS_FONTS_H_ +#define LIBRARIES_MISCDRIVERS_DISPLAY_FONTS_FONTS_H_ #ifdef FONT_LiberationSans12x12 extern const unsigned char Liberation_Sans12x12[]; @@ -70,4 +70,4 @@ extern const unsigned char Liberation_Sans28x28[]; */ #define font_char_table _font_char_table -#endif +#endif // LIBRARIES_MISCDRIVERS_DISPLAY_FONTS_FONTS_H_