Skip to content

Commit 1516b4c

Browse files
fix is_binary in smssynth
1 parent 5ae3419 commit 1516b4c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/sms/smssynth.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ uint64_t debug_flags = DebugFlag::Default;
6464

6565
bool is_binary(const char* s, size_t size) {
6666
for (size_t x = 0; x < size; x++) {
67-
if ((s[x] < 0x20) || (s[x] > 0x7F)) {
67+
if ((s[x] < 0x20) || (s[x] > 0x7E)) {
6868
return true;
6969
}
7070
}

0 commit comments

Comments
 (0)