summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorH. Peter Anvin <hpa@zytor.com>2016-10-03 22:45:23 -0700
committerH. Peter Anvin <hpa@zytor.com>2016-10-03 22:45:23 -0700
commite346b3b4a0fe19ede4228fc3ba2eab31456e00d0 (patch)
tree001fcc16f3077cf18400224290bce668dd58ba01
parentc5d40b35761c8e7c4ab4503ec4d05d05d4cbb277 (diff)
downloadnasm-e346b3b4a0fe19ede4228fc3ba2eab31456e00d0.tar.gz
assemble: avoid redundant repetition in RESx warning message
Clean up the language in this warning message, so as not be so unnecessarily repetitive. Signed-off-by: H. Peter Anvin <hpa@zytor.com>
-rw-r--r--assemble.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/assemble.c b/assemble.c
index a1aef1cd..0971fa3a 100644
--- a/assemble.c
+++ b/assemble.c
@@ -1180,7 +1180,7 @@ static int64_t calcsize(int32_t segment, int64_t offset, int bits,
" quantity of BSS space");
else if (ins->oprs[0].opflags & OPFLAG_FORWARD)
nasm_error(ERR_WARNING | ERR_PASS1,
- "forward reference in RESx can result in unpredictable results");
+ "forward reference in RESx can have unpredictable results");
else
length += ins->oprs[0].offset;
break;