svn commit: r267119 - head/tools/tools/vt/fontcvt

Ed Maste emaste at FreeBSD.org
Thu Jun 5 18:02:00 UTC 2014


Author: emaste
Date: Thu Jun  5 18:01:59 2014
New Revision: 267119
URL: http://svnweb.freebsd.org/changeset/base/267119

Log:
  vt fontcvt: -w sets the width, not height

Modified:
  head/tools/tools/vt/fontcvt/fontcvt.c

Modified: head/tools/tools/vt/fontcvt/fontcvt.c
==============================================================================
--- head/tools/tools/vt/fontcvt/fontcvt.c	Thu Jun  5 17:13:42 2014	(r267118)
+++ head/tools/tools/vt/fontcvt/fontcvt.c	Thu Jun  5 18:01:59 2014	(r267119)
@@ -401,7 +401,7 @@ main(int argc, char *argv[])
 			height = atoi(optarg);
 			break;
 		case 'w':
-			height = atoi(optarg);
+			width = atoi(optarg);
 			break;
 		case '?':
 		default:


More information about the svn-src-all mailing list