Use a single space after colon in another errx().
authortb <tb@openbsd.org>
Wed, 1 Aug 2018 13:35:33 +0000 (13:35 +0000)
committertb <tb@openbsd.org>
Wed, 1 Aug 2018 13:35:33 +0000 (13:35 +0000)
Pointed out by Kris Katterjohn

usr.bin/jot/jot.c

index 1c901b3..99c1d66 100644 (file)
@@ -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");