summaryrefslogtreecommitdiffstats
path: root/Modules/cjkcodecs/_euc_jp.c
diff options
context:
space:
mode:
Diffstat (limited to 'Modules/cjkcodecs/_euc_jp.c')
-rw-r--r--Modules/cjkcodecs/_euc_jp.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Modules/cjkcodecs/_euc_jp.c b/Modules/cjkcodecs/_euc_jp.c
index 0392133..72a4b20 100644
--- a/Modules/cjkcodecs/_euc_jp.c
+++ b/Modules/cjkcodecs/_euc_jp.c
@@ -18,7 +18,7 @@ ENCODER(euc_jp)
DBCHAR code;
if (c < 0x80) {
- WRITE1(c)
+ WRITE1((unsigned char)c)
NEXT(1, 1)
continue;
}