avoid a compiler warning

This commit is contained in:
Matthew Flatt 2016-05-03 13:49:05 -06:00
parent 9046d30bcf
commit 6c9a4cb470

View File

@ -1968,7 +1968,7 @@ regranges(int parse_flags, int at_start)
} }
} }
for (c++; c < 256; c++) { for (c++; c < 256; c++) {
if (!accum_map[c] == on) { if ((!accum_map[c]) == on) {
re = c - 1; re = c - 1;
break; break;
} }