aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThomas Voss <mail@thomasvoss.com> 2024-05-05 15:35:13 +0200
committerThomas Voss <mail@thomasvoss.com> 2024-05-05 15:35:13 +0200
commit812dad01590185aa268ab452b2328e08c3725a55 (patch)
treeda2e8af3364a5658cb7f2efb862dca21c28fb484
parent87431ad74f0642e067cd0bf6e9e80c50a749e6cd (diff)
Fix typo in include guard
-rw-r--r--include/mbio.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/include/mbio.h b/include/mbio.h
index 2cb501d..339c650 100644
--- a/include/mbio.h
+++ b/include/mbio.h
@@ -1,5 +1,5 @@
-#ifndef MLIB_MBIOO_H
-#define MLIB_MBIOO_H
+#ifndef MLIB_MBIO_H
+#define MLIB_MBIO_H
#include <stdio.h>
@@ -11,4 +11,4 @@ int freadrune(rune *, FILE *);
constexpr rune MBEOF = 0x110000;
constexpr rune MBERR = 0x110001;
-#endif /* !MLIB_MBIOO_H */
+#endif /* !MLIB_MBIO_H */