diff options
| author | Ed Maste <emaste@FreeBSD.org> | 2019-06-04 18:26:42 +0000 |
|---|---|---|
| committer | Ed Maste <emaste@FreeBSD.org> | 2019-06-04 18:26:42 +0000 |
| commit | 3c7951c78bf63dfc3bf7dd50c1f97224a808dfec (patch) | |
| tree | da5e7a5dd9a162ac27514076727e13c8c114284c | |
| parent | 8c953901bfebf3ea07851133aaad2d5e76da49b1 (diff) | |
Notes
| -rw-r--r-- | usr.bin/vtfontcvt/vtfontcvt.c | 4 |
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); |
