summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--assemble.c2
-rw-r--r--nasm.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/assemble.c b/assemble.c
index 8382b89b..1d8c3c10 100644
--- a/assemble.c
+++ b/assemble.c
@@ -360,7 +360,7 @@ static void out(int64_t offset, int32_t segto, const void *data,
abits, outfmt->shortname);
} else {
errfunc(ERR_WARNING | ERR_WARN_ZEXTRELOC,
- "%d-bit unsigned relocation zeroq-padded from %d bits\n",
+ "%d-bit unsigned relocation zero-extended from %d bits\n",
abits, maxbits);
outfmt->output(segto, data, type, amax, segment, wrt);
size -= amax;
diff --git a/nasm.c b/nasm.c
index e48f0a99..bb62d175 100644
--- a/nasm.c
+++ b/nasm.c
@@ -168,7 +168,7 @@ static const struct warning {
{"lock", "lock prefix on unlockable instructions", true},
{"hle", "invalid hle prefixes", true},
{"bnd", "invalid bnd prefixes", true},
- {"zero-reloc", "relocation zero-extended to match output format", true},
+ {"zext-reloc", "relocation zero-extended to match output format", true},
};
static bool want_usage;