summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPhil Jones <philj56@gmail.com>2022-11-19 09:57:49 +0000
committerPhil Jones <philj56@gmail.com>2022-11-19 09:57:49 +0000
commit1d72d4f2ec9a44dc5f524de018ca3a9fc2911ff0 (patch)
treec05efa4ddeee81310c09ab6fd77c21534e506717
parentca75d29bd2208ea7e2f5ccdb2b146953419be9b2 (diff)
Fix misnamed header guards in color.h.
-rw-r--r--src/color.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/color.h b/src/color.h
index 505ba9a..1b1cc05 100644
--- a/src/color.h
+++ b/src/color.h
@@ -1,5 +1,5 @@
-#ifndef UTIL_H
-#define UTIL_H
+#ifndef COLOR_H
+#define COLOR_H
#include <stdbool.h>
#include <stdint.h>
@@ -13,4 +13,4 @@ struct color {
struct color hex_to_color(const char *hex);
-#endif /* UTIL_H */
+#endif /* COLOR_H */