summaryrefslogtreecommitdiff
path: root/output/outform.c
diff options
context:
space:
mode:
authorH. Peter Anvin <hpa@zytor.com>2019-08-10 02:28:17 -0700
committerH. Peter Anvin <hpa@zytor.com>2019-08-10 02:28:17 -0700
commit9084beb1bb7e985e3d954081e15b4d469047f1b0 (patch)
treed96adee24ac6532ad35adf1fd0914a7bec4ea013 /output/outform.c
parent355bfb879de7e42215dd3f3a3631301705420715 (diff)
downloadnasm-9084beb1bb7e985e3d954081e15b4d469047f1b0.tar.gz
Clean up backend format names
The backend format names were rather redundant and not always helpful. Do some cleanup. Signed-off-by: H. Peter Anvin <hpa@zytor.com>
Diffstat (limited to 'output/outform.c')
-rw-r--r--output/outform.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/output/outform.c b/output/outform.c
index 3ab15d2a..a2fdde84 100644
--- a/output/outform.c
+++ b/output/outform.c
@@ -101,9 +101,9 @@ void ofmt_list(const struct ofmt *deffmt, FILE * fp)
for (i = 0; i < ARRAY_SIZE(ofmt_aliases); i++) {
if (!ofmt_aliases[i].shortname)
continue;
- fprintf(fp, " %-20s %s\n",
+ fprintf(fp, " %-20s Legacy alias for \"%s\"\n",
ofmt_aliases[i].shortname,
- ofmt_aliases[i].fullname);
+ ofmt_aliases[i].ofmt->shortname);
}
}