Bug fixed: fill_item() should initialize item->it_desirable to TRUE.
This commit is contained in:
parent
695a914eb3
commit
8d659c015f
1 changed files with 1 additions and 0 deletions
|
@ -85,6 +85,7 @@ fill_item(item,l)
|
||||||
line_p l;
|
line_p l;
|
||||||
{
|
{
|
||||||
item->it_type = item_type(l);
|
item->it_type = item_type(l);
|
||||||
|
item->it_desirable = TRUE;
|
||||||
switch(item->it_type) {
|
switch(item->it_type) {
|
||||||
case GLOBL_ADDR:
|
case GLOBL_ADDR:
|
||||||
item->i_t.it_obj = OBJ(l);
|
item->i_t.it_obj = OBJ(l);
|
||||||
|
|
Loading…
Reference in a new issue