diff options
author | Keith Kanios <spook@dynatos.net> | 2007-04-14 03:44:31 +0000 |
---|---|---|
committer | Keith Kanios <spook@dynatos.net> | 2007-04-14 03:44:31 +0000 |
commit | c8ef68bba92bd840f4b178a92cd2b7018a3388b9 (patch) | |
tree | afc6382c2d1340ec075f3cb722e15abd6eadb168 /output | |
parent | 3e7bb1e0461e2a3371e9544da4ed07b2343a29f9 (diff) | |
download | nasm-c8ef68bba92bd840f4b178a92cd2b7018a3388b9.tar.gz nasm-c8ef68bba92bd840f4b178a92cd2b7018a3388b9.tar.bz2 nasm-c8ef68bba92bd840f4b178a92cd2b7018a3388b9.zip |
Hopefully it is actually fixed this time :P
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 c7d8cc4..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, (int32_t*)NULL}}; +NULL, NULL, NULL, (int32_t)NULL}}; struct reloc { /* nasm internal data */ |