0
0
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:
H. Peter Anvin
2016-02-18 02:22:50 -08:00
parent e746971582
commit 2be1050f93

View File

@@ -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,