summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCyrill Gorcunov <gorcunov@gmail.com>2010-08-09 20:17:17 +0400
committerCyrill Gorcunov <gorcunov@gmail.com>2010-08-09 20:17:17 +0400
commit71f4f8426cd49834ec146ef002576deaf6272cc0 (patch)
treea0f4096d429bb912bd516a5a7bad66aca2ec23f3
parent753a60de639051c2523115d3773ad549520483cb (diff)
downloadnasm-71f4f8426cd49834ec146ef002576deaf6272cc0.tar.gz
preproc.c: Fix error message typo
Signed-off-by: Cyrill Gorcunov <gorcunov@gmail.com>
-rw-r--r--preproc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/preproc.c b/preproc.c
index 64c481ad..4aff7043 100644
--- a/preproc.c
+++ b/preproc.c
@@ -2900,7 +2900,7 @@ issue_error:
}
count = reloc_value(evalresult);
if (count >= REP_LIMIT) {
- error(ERR_NONFATAL, "`%%rep' evalue exceeds limit");
+ error(ERR_NONFATAL, "`%%rep' value exceeds limit");
count = 0;
} else
count++;