Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 4 Jun 2019 18:55:03 +0000 (UTC)
From:      Ed Maste <emaste@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r348662 - head/usr.bin/vtfontcvt
Message-ID:  <201906041855.x54It3iS046003@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
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],



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201906041855.x54It3iS046003>