diff options
author | Rich Felker <dalias@aerifal.cx> | 2011-02-13 23:08:18 -0500 |
---|---|---|
committer | Rich Felker <dalias@aerifal.cx> | 2011-02-13 23:08:18 -0500 |
commit | f9d880d25893dbf4caaa2f4e0c4d9bc8c1aea22a (patch) | |
tree | c596c195cce0d4563d87b5020d9e60e491801959 /src/multibyte/internal.h | |
parent | 2cdfb7ca26f46f151afbc23d5d94fc68597137f5 (diff) | |
download | musl-f9d880d25893dbf4caaa2f4e0c4d9bc8c1aea22a.tar.gz musl-f9d880d25893dbf4caaa2f4e0c4d9bc8c1aea22a.tar.bz2 musl-f9d880d25893dbf4caaa2f4e0c4d9bc8c1aea22a.tar.xz musl-f9d880d25893dbf4caaa2f4e0c4d9bc8c1aea22a.zip |
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.h | 8 |
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 |