[Nasm-commits] [nasm:preproc-rewrite] preproc.c: corrected error message for %endcomment

nasm-bot for Keith Kanios keith at kanios.net
Thu Jun 4 19:56:25 PDT 2020


Commit-ID:  091cce678e31abb7ab393d98a3e0f64f4865a9c7
Gitweb:     http://repo.or.cz/w/nasm.git?a=commitdiff;h=091cce678e31abb7ab393d98a3e0f64f4865a9c7
Author:     Keith Kanios <keith at kanios.net>
AuthorDate: Sun, 1 Aug 2010 19:58:24 -0500
Committer:  Keith Kanios <keith at kanios.net>
CommitDate: Sun, 1 Aug 2010 19:58:24 -0500

preproc.c: corrected error message for %endcomment



---
 preproc.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/preproc.c b/preproc.c
index 228f0247..483e3ac0 100644
--- a/preproc.c
+++ b/preproc.c
@@ -3808,7 +3808,7 @@ issue_error:
 			}
 		}
 		if ((defining == NULL) || (defining->type != EXP_COMMENT)) {
-			error(ERR_NONFATAL, "`%%endignore': no matching `%%ignore'");
+			error(ERR_NONFATAL, "`%%endcomment': no matching `%%comment'");
 			return DIRECTIVE_FOUND;
 		}
 		ed = defining;


More information about the Nasm-commits mailing list