diff options
author | Theo Buehler <tb@cvs.openbsd.org> | 2018-08-01 13:35:34 +0000 |
---|---|---|
committer | Theo Buehler <tb@cvs.openbsd.org> | 2018-08-01 13:35:34 +0000 |
commit | 93d7975002cd1ae8d4d69ae429fc3fdd17acab65 (patch) | |
tree | eb1882b2f9cce63ee23944f2168810eccf27382c | |
parent | 1c8ab742597255b39052a8353fc401623f85ca76 (diff) |
Use a single space after colon in another errx().
Pointed out by Kris Katterjohn
-rw-r--r-- | usr.bin/jot/jot.c | 4 |
1 files changed, 2 insertions, 2 deletions
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"); |