diff options
author | H. Peter Anvin <hpa@zytor.com> | 2002-05-14 22:38:55 +0000 |
---|---|---|
committer | H. Peter Anvin <hpa@zytor.com> | 2002-05-14 22:38:55 +0000 |
commit | 310b3e165f86d6655bf68bd89ff9309aa63663f2 (patch) | |
tree | d06af9a44d1e2f0d165caf33be7a3718995f5838 /output/outcoff.c | |
parent | 86e94b1b3396a1611dcb545baed5f9760cf903c3 (diff) | |
download | nasm-310b3e165f86d6655bf68bd89ff9309aa63663f2.tar.gz nasm-310b3e165f86d6655bf68bd89ff9309aa63663f2.tar.bz2 nasm-310b3e165f86d6655bf68bd89ff9309aa63663f2.zip |
Code cleanup fixes from Ed Beroset
Diffstat (limited to 'output/outcoff.c')
-rw-r--r-- | output/outcoff.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/output/outcoff.c b/output/outcoff.c index 973d9fe..f7160d5 100644 --- a/output/outcoff.c +++ b/output/outcoff.c @@ -721,7 +721,7 @@ static void coff_win32_filename (char *inname, char *outname, efunc error) standard_extension (inname, outname, ".obj", error); } -static char *coff_stdmac[] = { +const static char *coff_stdmac[] = { "%define __SECT__ [section .text]", "%macro __NASM_CDecl__ 1", "%endmacro", |