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

Ed Maste emaste at FreeBSD.org
Mon Jul 21 17:18:00 UTC 2014


Author: emaste
Date: Mon Jul 21 17:18:00 2014
New Revision: 268948
URL: http://svnweb.freebsd.org/changeset/base/268948

Log:
  Use the standard way of printing the usage string
  
  Sponsored by:	The FreeBSD Foundation

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

Modified: head/usr.bin/vtfontcvt/vtfontcvt.c
==============================================================================
--- head/usr.bin/vtfontcvt/vtfontcvt.c	Mon Jul 21 16:38:05 2014	(r268947)
+++ head/usr.bin/vtfontcvt/vtfontcvt.c	Mon Jul 21 17:18:00 2014	(r268948)
@@ -91,7 +91,7 @@ static void
 usage(void)
 {
 
-	errx(1,
+	(void)fprintf(stderr,
 "usage: vtfontcvt [-w width] [-h height] [-v] normal.bdf [bold.bdf] out.fnt\n");
 	exit(1);
 }


More information about the svn-src-head mailing list