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>
This commit is contained in:
H. Peter Anvin (Intel) 2019-08-06 19:37:49 -07:00
parent ca47c843ed
commit 32f7464076

View File

@ -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);