diff options
author | H. Peter Anvin <hpa@zytor.com> | 2008-07-19 21:44:26 -0700 |
---|---|---|
committer | H. Peter Anvin <hpa@zytor.com> | 2008-07-19 21:44:26 -0700 |
commit | a70547f3ae6abaa2c658fdfdacf0ad6001b6839f (patch) | |
tree | 19bb03d5498fbd6581504b64d2e8289ba94ad657 /nasm.h | |
parent | 289ff7e2a870c8e29ebbbd9b3a04abcafd0643f4 (diff) | |
download | nasm-a70547f3ae6abaa2c658fdfdacf0ad6001b6839f.tar.gz nasm-a70547f3ae6abaa2c658fdfdacf0ad6001b6839f.tar.bz2 nasm-a70547f3ae6abaa2c658fdfdacf0ad6001b6839f.zip |
Avoid redundant "const" for macros_t
Don't use a redundant "const" for macros_t (which is const unsigned
char), since OpenWatcom doesn't like it, and I believe it is incorrect
per the C standard.
Diffstat (limited to 'nasm.h')
-rw-r--r-- | nasm.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -751,7 +751,7 @@ struct ofmt { * and user-level equivalents for any format-specific * directives). */ - const macros_t *stdmac; + macros_t *stdmac; /* * This procedure is called at the start of an output session. |