vtfontcvt: use VFNT_MAP_{NORMAL|BOL}_RH symbolic constants

PR:		205707
Reported by:	Dmitry Wagin
MFC after:	1 month
This commit is contained in:
Ed Maste 2019-06-04 18:26:42 +00:00
parent 8c953901bf
commit 3c7951c78b
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=348653

View File

@ -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);