diff options
author | Keith Kanios <spook@dynatos.net> | 2007-04-14 01:40:24 +0000 |
---|---|---|
committer | Keith Kanios <spook@dynatos.net> | 2007-04-14 01:40:24 +0000 |
commit | df12db1f13731b7784dee532f99817fb5d87cff0 (patch) | |
tree | afc6382c2d1340ec075f3cb722e15abd6eadb168 /output | |
parent | 47776ac52561c4694976bedecbf0e82635370dfc (diff) | |
download | nasm-df12db1f13731b7784dee532f99817fb5d87cff0.tar.gz nasm-df12db1f13731b7784dee532f99817fb5d87cff0.tar.bz2 nasm-df12db1f13731b7784dee532f99817fb5d87cff0.zip |
Fixed uninitialized structure data.
Diffstat (limited to 'output')
-rw-r--r-- | output/outmacho.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/output/outmacho.c b/output/outmacho.c index 4043d02..596c8b8 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 */ |