summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLuo Jinghua <sunmoon1997@gmail.com>2010-01-07 20:13:45 +0800
committerLuo Jinghua <sunmoon1997@gmail.com>2010-01-07 20:13:45 +0800
commit4015027e7161ad18bdce75541b3ba5e5b3a6543f (patch)
treea815f72b06fec73840ee0ccb370b650074e55e5e
parent77ed4252c6c8b2c99069cc4f6214821a3068a04d (diff)
uniconv: replace unsigned char with uc_uint8_t
-rw-r--r--singlebytecodec.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/singlebytecodec.c b/singlebytecodec.c
index 0faf2e3..a0c099b 100644
--- a/singlebytecodec.c
+++ b/singlebytecodec.c
@@ -65,7 +65,7 @@ sbcs_decode(SingleByteCodecState *state,
uc_char_t **outbuf,
size_t outleft)
{
- const unsigned char **uinbuf = (const unsigned char **)inbuf;
+ const uc_uint8_t **uinbuf = (const uc_uint8_t **)inbuf;
for (; inleft; inleft--, outleft--)
{