elf32: Drop holes in linelist structure
authorCyrill Gorcunov <gorcunov@gmail.com>
Sun, 28 Aug 2011 13:05:17 +0000 (17:05 +0400)
committerCyrill Gorcunov <gorcunov@gmail.com>
Sun, 28 Aug 2011 13:05:17 +0000 (17:05 +0400)
Signed-off-by: Cyrill Gorcunov <gorcunov@gmail.com>
output/outelf32.c

index 7feb802..9ef2457 100644 (file)
@@ -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 {