summaryrefslogtreecommitdiff
path: root/output
diff options
context:
space:
mode:
authorH. Peter Anvin (Intel) <hpa@zytor.com>2019-08-06 19:37:49 -0700
committerH. Peter Anvin (Intel) <hpa@zytor.com>2019-08-06 19:37:49 -0700
commit32f74640767d659f9767826cebb6bbddf66b4500 (patch)
tree9b979a58c4d66607e80739c021b857aefd89b59b /output
parentca47c843ed67da3c6bb8187ed0eb43d506a95674 (diff)
downloadnasm-32f74640767d659f9767826cebb6bbddf66b4500.tar.gz
outmacho.c: mark zeroing warning as WARN_ZEROING
The zeroing warning should, amazingly enough, have been WARN_ZEROING. Signed-off-by: H. Peter Anvin (Intel) <hpa@zytor.com>
Diffstat (limited to 'output')
-rw-r--r--output/outmacho.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/output/outmacho.c b/output/outmacho.c
index cff4affa..6d9059be 100644
--- a/output/outmacho.c
+++ b/output/outmacho.c
@@ -592,7 +592,7 @@ static void macho_output(int32_t secto, const void *data,
switch (type) {
case OUT_RESERVE:
if (!is_bss) {
- nasm_warn(WARN_OTHER, "uninitialized space declared in"
+ nasm_warn(WARN_ZEROING, "uninitialized space declared in"
" %s,%s section: zeroing", s->segname, s->sectname);
sect_write(s, NULL, size);