diff options
-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 { |