summaryrefslogtreecommitdiff
path: root/nasm.h
diff options
context:
space:
mode:
authorH. Peter Anvin <hpa@zytor.com>2008-07-19 21:44:26 -0700
committerH. Peter Anvin <hpa@zytor.com>2008-07-19 21:44:26 -0700
commita70547f3ae6abaa2c658fdfdacf0ad6001b6839f (patch)
tree19bb03d5498fbd6581504b64d2e8289ba94ad657 /nasm.h
parent289ff7e2a870c8e29ebbbd9b3a04abcafd0643f4 (diff)
downloadnasm-a70547f3ae6abaa2c658fdfdacf0ad6001b6839f.tar.gz
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.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/nasm.h b/nasm.h
index 4799e912..c34d7f02 100644
--- a/nasm.h
+++ b/nasm.h
@@ -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.