From 7add67f94915ee3fd6b9733ba86c0443a9e970b5 Mon Sep 17 00:00:00 2001 From: Cyrill Gorcunov Date: Sun, 28 Aug 2011 17:07:26 +0400 Subject: [PATCH] elf64: Make linelist to look the same as elf32 Signed-off-by: Cyrill Gorcunov --- output/outelf64.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/output/outelf64.c b/output/outelf64.c index 4574a7fb..5635761e 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 { -- 2.11.4.GIT