From: nasm-bot f. H. P. A. <hp...@li...> - 2016-02-18 10:30:18
|
Commit-ID: 2be1050f9340b48482b9b4846ecb86f1ba86e888 Gitweb: http://repo.or.cz/w/nasm.git?a=commitdiff;h=2be1050f9340b48482b9b4846ecb86f1ba86e888 Author: H. Peter Anvin <hp...@li...> AuthorDate: Thu, 18 Feb 2016 02:22:50 -0800 Committer: H. Peter Anvin <hp...@li...> CommitDate: Thu, 18 Feb 2016 02:22:50 -0800 codeview: make struct dfmt df_cv8 const This one was not declared const; fix that. Signed-off-by: H. Peter Anvin <hp...@li...> --- output/codeview.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/output/codeview.c b/output/codeview.c index 2f5bb69..f837c12 100644 --- a/output/codeview.c +++ b/output/codeview.c @@ -58,7 +58,7 @@ static void cv8_typevalue(int32_t type); static void cv8_output(int type, void *param); static void cv8_cleanup(void); -struct dfmt df_cv8 = { +const struct dfmt df_cv8 = { .fullname = "Codeview 8", .shortname = "cv8", .init = cv8_init, |