diff options
author | Cyrill Gorcunov <gorcunov@gmail.com> | 2011-08-28 17:07:26 +0400 |
---|---|---|
committer | Cyrill Gorcunov <gorcunov@gmail.com> | 2011-08-28 17:07:26 +0400 |
commit | 7add67f94915ee3fd6b9733ba86c0443a9e970b5 (patch) | |
tree | e4d460cb10efccce02d42fa0f4e8eb27bd6012d3 | |
parent | 5a8944af59eb7cbd432c7707203ef6deac5500ae (diff) | |
download | nasm-7add67f94915ee3fd6b9733ba86c0443a9e970b5.tar.gz nasm-7add67f94915ee3fd6b9733ba86c0443a9e970b5.tar.bz2 nasm-7add67f94915ee3fd6b9733ba86c0443a9e970b5.zip |
elf64: Make linelist to look the same as elf32
Signed-off-by: Cyrill Gorcunov <gorcunov@gmail.com>
-rw-r--r-- | output/outelf64.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/output/outelf64.c b/output/outelf64.c index 4574a7f..5635761 100644 --- a/output/outelf64.c +++ b/output/outelf64.c @@ -155,11 +155,11 @@ struct symlininfo { }; struct linelist { - struct symlininfo info; - int line; - char *filename; struct linelist *next; struct linelist *last; + struct symlininfo info; + char *filename; + int line; }; struct sectlist { |