From 5a8944af59eb7cbd432c7707203ef6deac5500ae Mon Sep 17 00:00:00 2001 From: Cyrill Gorcunov Date: Sun, 28 Aug 2011 17:05:17 +0400 Subject: [PATCH] elf32: Drop holes in linelist structure Signed-off-by: Cyrill Gorcunov --- output/outelf32.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/output/outelf32.c b/output/outelf32.c index 7feb802d..9ef24577 100644 --- a/output/outelf32.c +++ b/output/outelf32.c @@ -153,11 +153,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