From 54a7138bd897f7a14274a924acc3367b34ef0fba Mon Sep 17 00:00:00 2001 From: Ed Maste Date: Mon, 21 Jul 2014 17:18:00 +0000 Subject: [PATCH] Use the standard way of printing the usage string Sponsored by: The FreeBSD Foundation --- usr.bin/vtfontcvt/vtfontcvt.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/usr.bin/vtfontcvt/vtfontcvt.c b/usr.bin/vtfontcvt/vtfontcvt.c index d2d4c8b980a3..e303832c08b3 100644 --- a/usr.bin/vtfontcvt/vtfontcvt.c +++ b/usr.bin/vtfontcvt/vtfontcvt.c @@ -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); }