From df12db1f13731b7784dee532f99817fb5d87cff0 Mon Sep 17 00:00:00 2001 From: Keith Kanios Date: Sat, 14 Apr 2007 01:40:24 +0000 Subject: [PATCH] Fixed uninitialized structure data. --- output/outmacho.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/output/outmacho.c b/output/outmacho.c index 4043d026..596c8b83 100644 --- a/output/outmacho.c +++ b/output/outmacho.c @@ -88,7 +88,7 @@ static struct sectmap { ".data", "__DATA", "__data", S_REGULAR}, { ".rodata", "__DATA", "__const", S_REGULAR}, { ".bss", "__DATA", "__bss", S_ZEROFILL}, { -NULL, NULL, NULL, NULL}}; +NULL, NULL, NULL, (int32_t)NULL}}; struct reloc { /* nasm internal data */