diff options
author | Cyrill Gorcunov <gorcunov@gmail.com> | 2010-04-10 14:58:39 +0400 |
---|---|---|
committer | Cyrill Gorcunov <gorcunov@gmail.com> | 2010-04-11 12:58:05 +0400 |
commit | c084467eba0fa81b04e9d413bf8ae27475cfce61 (patch) | |
tree | 456bddd353f9bbd1c82ebd7390f3f1a96dadde52 /output/outelf.c | |
parent | 367d59e2726866887b75822338fe7387c81ec298 (diff) | |
download | nasm-c084467eba0fa81b04e9d413bf8ae27475cfce61.tar.gz nasm-c084467eba0fa81b04e9d413bf8ae27475cfce61.tar.bz2 nasm-c084467eba0fa81b04e9d413bf8ae27475cfce61.zip |
Elf: Use SHA_ANY constant instead of open coded number
SHA_ANY is not part of Elf specification but rather our own symbolic
definition for convenience.
Signed-off-by: Cyrill Gorcunov <gorcunov@gmail.com>
Diffstat (limited to 'output/outelf.c')
-rw-r--r-- | output/outelf.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/output/outelf.c b/output/outelf.c index 9ac39a6..f1ba7dd 100644 --- a/output/outelf.c +++ b/output/outelf.c @@ -79,12 +79,12 @@ void section_attrib(char *name, char *attr, int pass, if (!nasm_stricmp(q, "align")) { *align = atoi(v); if (*align == 0) { - *align = 1; + *align = SHA_ANY; } else if (!is_power2(*align)) { nasm_error(ERR_NONFATAL, "section alignment %"PRId64" is not a power of two", *align); - *align = 1; + *align = SHA_ANY; } } else if (!nasm_stricmp(q, "alloc")) { *flags_and |= SHF_ALLOC; |