svn commit: r348662 - head/usr.bin/vtfontcvt

Ed Maste emaste at FreeBSD.org
Tue Jun 4 18:55:04 UTC 2019


Author: emaste
Date: Tue Jun  4 18:55:02 2019
New Revision: 348662
URL: https://svnweb.freebsd.org/changeset/base/348662

Log:
  vtfontcvt: include width and height in verbose info
  
  PR:		205707
  Submitted by:	Dmitry Wagin

Modified:
  head/usr.bin/vtfontcvt/vtfontcvt.c

Modified: head/usr.bin/vtfontcvt/vtfontcvt.c
==============================================================================
--- head/usr.bin/vtfontcvt/vtfontcvt.c	Tue Jun  4 18:49:49 2019	(r348661)
+++ head/usr.bin/vtfontcvt/vtfontcvt.c	Tue Jun  4 18:55:02 2019	(r348662)
@@ -520,6 +520,8 @@ print_font_info(void)
 {
 	printf(
 "Statistics:\n"
+"- width:                       %6u\n"
+"- height:                      %6u\n"
 "- glyph_total:                 %6u\n"
 "- glyph_normal:                %6u\n"
 "- glyph_normal_right:          %6u\n"
@@ -538,6 +540,7 @@ print_font_info(void)
 "- mapping_bold_right_folded:   %6u\n"
 "- mapping_unique:              %6u\n"
 "- mapping_dupe:                %6u\n",
+	    width, height,
 	    glyph_total,
 	    glyph_count[0],
 	    glyph_count[1],


More information about the svn-src-head mailing list