diff options
author | Cyrill Gorcunov <gorcunov@gmail.com> | 2010-04-21 13:45:32 +0400 |
---|---|---|
committer | Cyrill Gorcunov <gorcunov@gmail.com> | 2010-04-21 18:09:54 +0400 |
commit | 2ef5c27be7a4e94c49560823d5074dafca6a2ac5 (patch) | |
tree | 34d8ad6a65e9b0b480c4fce2091ca93a110e0585 /output/outbin.c | |
parent | 1f3db76ee973355489ea3a2296211d796b59a61f (diff) | |
download | nasm-2ef5c27be7a4e94c49560823d5074dafca6a2ac5.tar.gz nasm-2ef5c27be7a4e94c49560823d5074dafca6a2ac5.tar.bz2 nasm-2ef5c27be7a4e94c49560823d5074dafca6a2ac5.zip |
Rename SEGALIGN to SECTALIGN
"sectalign" is preferred over "segalign"
since it operates over section attributes.
Signed-off-by: Cyrill Gorcunov <gorcunov@gmail.com>
Diffstat (limited to 'output/outbin.c')
-rw-r--r-- | output/outbin.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/output/outbin.c b/output/outbin.c index 9b831a2..260d99d 100644 --- a/output/outbin.c +++ b/output/outbin.c @@ -1672,7 +1672,7 @@ struct ofmt of_bin = { bin_out, bin_deflabel, bin_secname, - null_segalign, + null_sectalign, bin_segbase, bin_directive, bin_filename, @@ -1691,7 +1691,7 @@ struct ofmt of_ith = { bin_out, bin_deflabel, bin_secname, - null_segalign, + null_sectalign, bin_segbase, bin_directive, ith_filename, @@ -1710,7 +1710,7 @@ struct ofmt of_srec = { bin_out, bin_deflabel, bin_secname, - null_segalign, + null_sectalign, bin_segbase, bin_directive, srec_filename, |