diff options
author | Phil Jones <philj56@gmail.com> | 2022-11-19 09:57:49 +0000 |
---|---|---|
committer | Phil Jones <philj56@gmail.com> | 2022-11-19 09:57:49 +0000 |
commit | 1d72d4f2ec9a44dc5f524de018ca3a9fc2911ff0 (patch) | |
tree | c05efa4ddeee81310c09ab6fd77c21534e506717 | |
parent | ca75d29bd2208ea7e2f5ccdb2b146953419be9b2 (diff) |
Fix misnamed header guards in color.h.
-rw-r--r-- | src/color.h | 6 |
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 */ |