summaryrefslogtreecommitdiff
path: root/src/multibyte/internal.h
diff options
context:
space:
mode:
authorRich Felker <dalias@aerifal.cx>2011-02-13 23:08:18 -0500
committerRich Felker <dalias@aerifal.cx>2011-02-13 23:08:18 -0500
commitf9d880d25893dbf4caaa2f4e0c4d9bc8c1aea22a (patch)
treec596c195cce0d4563d87b5020d9e60e491801959 /src/multibyte/internal.h
parent2cdfb7ca26f46f151afbc23d5d94fc68597137f5 (diff)
downloadmusl-f9d880d25893dbf4caaa2f4e0c4d9bc8c1aea22a.tar.gz
cleanup multibyte stuff to remove ugly casts, sanitize the ptr align casts
Diffstat (limited to 'src/multibyte/internal.h')
-rw-r--r--src/multibyte/internal.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/multibyte/internal.h b/src/multibyte/internal.h
index 427519a2..ec52bdfa 100644
--- a/src/multibyte/internal.h
+++ b/src/multibyte/internal.h
@@ -53,9 +53,9 @@ extern const uint32_t bittab[];
#define FAILSTATE R(0x80,0x80)
#ifdef I_FAILED_TO_RTFM_RFC3629
-#define SA 0xc2
-#define SB 0xfe
+#define SA 0xc2u
+#define SB 0xfeu
#else
-#define SA 0xc2
-#define SB 0xf5
+#define SA 0xc2u
+#define SB 0xf5u
#endif