uncomment some lines that shouldn't have been commented (doesn't fix the bug, though)

This commit is contained in:
Bill Currie 2007-04-09 14:32:47 +00:00 committed by Jeff Teunissen
parent 845b5ab2e2
commit 3b7c83a96f

View file

@ -629,10 +629,10 @@ merge_defgroups (void)
}
for (i = 0; i < relocs.num_relocs; i = j) {
j = i;
// while (j < relocs.num_relocs && relocs.relocs[j].type != rel_none)
while (j < relocs.num_relocs && relocs.relocs[j].type != rel_none)
j++;
relocgroup_add_relocs (&final_relocs, relocs.relocs + i, j - i);
// while (j < relocs.num_relocs && relocs.relocs[j].type == rel_none)
while (j < relocs.num_relocs && relocs.relocs[j].type == rel_none)
j++;
}
}