aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEd Maste <emaste@FreeBSD.org>2019-06-04 18:26:42 +0000
committerEd Maste <emaste@FreeBSD.org>2019-06-04 18:26:42 +0000
commit3c7951c78bf63dfc3bf7dd50c1f97224a808dfec (patch)
treeda5e7a5dd9a162ac27514076727e13c8c114284c
parent8c953901bfebf3ea07851133aaad2d5e76da49b1 (diff)
Notes
-rw-r--r--usr.bin/vtfontcvt/vtfontcvt.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/vtfontcvt/vtfontcvt.c b/usr.bin/vtfontcvt/vtfontcvt.c
index e303d80b0eef0..4b1c8eb78e3da 100644
--- a/usr.bin/vtfontcvt/vtfontcvt.c
+++ b/usr.bin/vtfontcvt/vtfontcvt.c
@@ -496,9 +496,9 @@ write_fnt(const char *filename)
if (write_glyphs(fp) != 0 ||
write_mappings(fp, VFNT_MAP_NORMAL) != 0 ||
- write_mappings(fp, 1) != 0 ||
+ write_mappings(fp, VFNT_MAP_NORMAL_RH) != 0 ||
write_mappings(fp, VFNT_MAP_BOLD) != 0 ||
- write_mappings(fp, 3) != 0) {
+ write_mappings(fp, VFNT_MAP_BOLD_RH) != 0) {
perror(filename);
fclose(fp);
return (1);