bugfix regionsinterval

This commit is contained in:
Enno Rehling 2004-02-01 20:16:25 +00:00
parent 5aec54ead5
commit cce8707acb
1 changed files with 1 additions and 1 deletions

View File

@ -1017,7 +1017,7 @@ get_seen_interval(region ** first, region ** last)
}
while (r!=NULL) {
if (find_seen(r)!=NULL) {
*last = r;
*last = r->next;
}
r = r->next;
}