summaryrefslogtreecommitdiff
path: root/output
diff options
context:
space:
mode:
authorCyrill Gorcunov <gorcunov@gmail.com>2011-08-28 17:07:26 +0400
committerCyrill Gorcunov <gorcunov@gmail.com>2011-08-28 17:07:26 +0400
commit7add67f94915ee3fd6b9733ba86c0443a9e970b5 (patch)
treee4d460cb10efccce02d42fa0f4e8eb27bd6012d3 /output
parent5a8944af59eb7cbd432c7707203ef6deac5500ae (diff)
downloadnasm-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>
Diffstat (limited to 'output')
-rw-r--r--output/outelf64.c6
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 {