aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--uxd.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/uxd.c b/uxd.c
index 55f02c6..0347917 100644
--- a/uxd.c
+++ b/uxd.c
@@ -562,7 +562,7 @@ int dump_utf8_char(void) {
}
/* look at 1st byte to find out how long the sequence is */
- if(c < 0x7f) {
+ if(c <= 0x7f) {
ascii_count++;
cont_count = 0;
if(c <= ' ' || c == 0x7f)