summaryrefslogtreecommitdiffstats
path: root/Modules/cjkcodecs/_codecs_hk.c
diff options
context:
space:
mode:
authorVictor Stinner <victor.stinner@gmail.com>2013-10-28 23:59:44 (GMT)
committerVictor Stinner <victor.stinner@gmail.com>2013-10-28 23:59:44 (GMT)
commit28c63f7ffb9f9cb59c524dc14ce66d34c0e83af6 (patch)
treeaa72609ba7c6890975638f7c63f4ca587697fb47 /Modules/cjkcodecs/_codecs_hk.c
parent14c9fea60aa6884586c0a87046b308c2af76d38d (diff)
downloadcpython-28c63f7ffb9f9cb59c524dc14ce66d34c0e83af6.zip
cpython-28c63f7ffb9f9cb59c524dc14ce66d34c0e83af6.tar.gz
cpython-28c63f7ffb9f9cb59c524dc14ce66d34c0e83af6.tar.bz2
CJK codecs: less magical macros, semicolon is now explicit
Diffstat (limited to 'Modules/cjkcodecs/_codecs_hk.c')
-rw-r--r--Modules/cjkcodecs/_codecs_hk.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Modules/cjkcodecs/_codecs_hk.c b/Modules/cjkcodecs/_codecs_hk.c
index 92c468a..b7a7ebd 100644
--- a/Modules/cjkcodecs/_codecs_hk.c
+++ b/Modules/cjkcodecs/_codecs_hk.c
@@ -119,7 +119,7 @@ DECODER(big5hkscs)
continue;
}
- REQUIRE_INBUF(2)
+ REQUIRE_INBUF(2);
if (0xc6 > c || c > 0xc8 || (c < 0xc7 && INBYTE2 < 0xa1)) {
if (TRYMAP_DEC(big5, decoded, c, INBYTE2)) {