summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCyrill Gorcunov <gorcunov@gmail.com>2011-08-28 17:05:17 +0400
committerCyrill Gorcunov <gorcunov@gmail.com>2011-08-28 17:05:17 +0400
commit5a8944af59eb7cbd432c7707203ef6deac5500ae (patch)
tree970b617d07c9db5c483c72e47ef314211427c919
parente07bd499f847f5db8c12281f196119e48b578d0c (diff)
downloadnasm-5a8944af59eb7cbd432c7707203ef6deac5500ae.tar.gz
elf32: Drop holes in linelist structure
Signed-off-by: Cyrill Gorcunov <gorcunov@gmail.com>
-rw-r--r--output/outelf32.c6
1 files 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 {