From a70547f3ae6abaa2c658fdfdacf0ad6001b6839f Mon Sep 17 00:00:00 2001 From: "H. Peter Anvin" Date: Sat, 19 Jul 2008 21:44:26 -0700 Subject: 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. --- nasm.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'nasm.h') 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. -- cgit v1.2.1