diff options
author | Cyrill Gorcunov <gorcunov@gmail.com> | 2011-08-28 17:05:17 +0400 |
---|---|---|
committer | Cyrill Gorcunov <gorcunov@gmail.com> | 2011-08-28 17:05:17 +0400 |
commit | 5a8944af59eb7cbd432c7707203ef6deac5500ae (patch) | |
tree | 970b617d07c9db5c483c72e47ef314211427c919 /output | |
parent | e07bd499f847f5db8c12281f196119e48b578d0c (diff) | |
download | nasm-5a8944af59eb7cbd432c7707203ef6deac5500ae.tar.gz nasm-5a8944af59eb7cbd432c7707203ef6deac5500ae.tar.bz2 nasm-5a8944af59eb7cbd432c7707203ef6deac5500ae.zip |
elf32: Drop holes in linelist structure
Signed-off-by: Cyrill Gorcunov <gorcunov@gmail.com>
Diffstat (limited to 'output')
-rw-r--r-- | output/outelf32.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/output/outelf32.c b/output/outelf32.c index 7feb802..9ef2457 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 { |