The revision before the previous one is partially wrong, back out the

bad parts.
This commit is contained in:
Markus Armbruster 2006-03-26 17:34:58 +00:00
parent e438227011
commit 82a3c0d0f5

View file

@ -253,8 +253,8 @@ static void
insert(coord *table, int *len, coord x, coord y) insert(coord *table, int *len, coord x, coord y)
{ {
if (!check(table, len, x, y)) { if (!check(table, len, x, y)) {
table[*len++] = x; table[(*len)++] = x;
table[*len++] = y; table[(*len)++] = y;
} }
} }