From: tb Date: Wed, 1 Aug 2018 13:35:33 +0000 (+0000) Subject: Use a single space after colon in another errx(). X-Git-Url: http://artulab.com/gitweb/?a=commitdiff_plain;h=aab43efd6887fdbf85bb85af3a1f6e9265ce2073;p=openbsd Use a single space after colon in another errx(). Pointed out by Kris Katterjohn --- diff --git a/usr.bin/jot/jot.c b/usr.bin/jot/jot.c index 1c901b3be8b..99c1d6657cb 100644 --- a/usr.bin/jot/jot.c +++ b/usr.bin/jot/jot.c @@ -1,4 +1,4 @@ -/* $OpenBSD: jot.c,v 1.47 2018/08/01 13:13:53 cheloha Exp $ */ +/* $OpenBSD: jot.c,v 1.48 2018/08/01 13:35:33 tb Exp $ */ /* $NetBSD: jot.c,v 1.3 1994/12/02 20:29:43 pk Exp $ */ /*- @@ -128,7 +128,7 @@ main(int argc, char *argv[]) case 4: if (!is_default(argv[3])) { if (!sscanf(argv[3], "%lf", &step)) - errx(1, "Bad s value: %s", argv[3]); + errx(1, "Bad s value: %s", argv[3]); mask |= STEP; if (randomize) warnx("random seeding not supported");