mirror of
https://github.com/netwide-assembler/nasm.git
synced 2025-10-10 00:25:06 -04:00
codeview: make struct dfmt df_cv8 const
This one was not declared const; fix that. Signed-off-by: H. Peter Anvin <hpa@linux.intel.com>
This commit is contained in:
@@ -58,7 +58,7 @@ static void cv8_typevalue(int32_t type);
|
|||||||
static void cv8_output(int type, void *param);
|
static void cv8_output(int type, void *param);
|
||||||
static void cv8_cleanup(void);
|
static void cv8_cleanup(void);
|
||||||
|
|
||||||
struct dfmt df_cv8 = {
|
const struct dfmt df_cv8 = {
|
||||||
.fullname = "Codeview 8",
|
.fullname = "Codeview 8",
|
||||||
.shortname = "cv8",
|
.shortname = "cv8",
|
||||||
.init = cv8_init,
|
.init = cv8_init,
|
||||||
|
Reference in New Issue
Block a user