summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKeith Kanios <keith@kanios.net>2010-08-01 19:58:24 -0500
committerKeith Kanios <keith@kanios.net>2010-08-01 19:58:24 -0500
commit091cce678e31abb7ab393d98a3e0f64f4865a9c7 (patch)
tree2a490e23f22d4ff83dac41160f5d1a3785791d4f
parentee843cb98f83d3a6c42b003bad605381a1a6ebba (diff)
downloadnasm-091cce678e31abb7ab393d98a3e0f64f4865a9c7.tar.gz
preproc.c: corrected error message for %endcomment
-rw-r--r--preproc.c2
1 files changed, 1 insertions, 1 deletions
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;