From: nasm-bot f. H. P. A. <hp...@li...> - 2016-02-18 09:33:18
|
Commit-ID: 501b35f234cb605ab576147ba7e20bfb986f7fd1 Gitweb: http://repo.or.cz/w/nasm.git?a=commitdiff;h=501b35f234cb605ab576147ba7e20bfb986f7fd1 Author: H. Peter Anvin <hp...@li...> AuthorDate: Thu, 18 Feb 2016 01:30:33 -0800 Committer: H. Peter Anvin <hp...@li...> CommitDate: Thu, 18 Feb 2016 01:30:33 -0800 ofmt pointer in struct ofmt_alias should be const One more place where an ofmt pointer exists, and it should be const. Signed-off-by: H. Peter Anvin <hp...@li...> --- nasm.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nasm.h b/nasm.h index 808f832..140539e 100644 --- a/nasm.h +++ b/nasm.h @@ -849,7 +849,7 @@ struct ofmt { struct ofmt_alias { const char *shortname; const char *fullname; - struct ofmt *ofmt; + const struct ofmt *ofmt; }; extern const struct ofmt *ofmt; |