diff options
Diffstat (limited to 'nasm.c')
-rw-r--r-- | nasm.c | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -59,10 +59,10 @@ int global_offset_changed; /* referenced in labels.c */ static loc_t location; int in_abs_seg; /* Flag we are in ABSOLUTE seg */ -static long abs_seg; +long abs_seg; static struct RAA *offsets; -static long abs_offset; +long abs_offset; static struct SAA *forwrefs; /* keep track of forward references */ static struct forwrefinfo *forwref; @@ -972,7 +972,7 @@ static void assemble_file (char *fname) else report_error (ERR_PANIC, "invalid ABSOLUTE address " "in pass two"); in_abs_seg = TRUE; - location.segment = abs_seg; + location.segment = NO_SEG; break; case 7: /* DEBUG */ p = value; |