diff options
author | H. Peter Anvin <hpa@zytor.com> | 2003-07-10 00:40:33 +0000 |
---|---|---|
committer | H. Peter Anvin <hpa@zytor.com> | 2003-07-10 00:40:33 +0000 |
commit | 2b320bcab98228fa7a2062c73fd922fd0d2da68f (patch) | |
tree | 5bd31258f8246e898cf3ed5fc5f0f875c87917b5 /output/outelf.c | |
parent | 73320328c1232260bd569a8fb045124ad55f342d (diff) | |
download | nasm-2b320bcab98228fa7a2062c73fd922fd0d2da68f.tar.gz nasm-2b320bcab98228fa7a2062c73fd922fd0d2da68f.tar.bz2 nasm-2b320bcab98228fa7a2062c73fd922fd0d2da68f.zip |
Restore the adjusted symbol id start
Diffstat (limited to 'output/outelf.c')
-rw-r--r-- | output/outelf.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/output/outelf.c b/output/outelf.c index 6067e9f..d53c8a5 100644 --- a/output/outelf.c +++ b/output/outelf.c @@ -116,7 +116,7 @@ extern struct ofmt of_elf; #define SYM_DATA 0x01 #define SYM_FUNCTION 0x02 -#define GLOBAL_TEMP_BASE 6 /* bigger than any constant sym id */ +#define GLOBAL_TEMP_BASE 16 /* bigger than any constant sym id */ #define SEG_ALIGN 16 /* alignment of sections in file */ #define SEG_ALIGN_1 (SEG_ALIGN-1) |