1
0
mirror of https://github.com/openbsd/src.git synced 2025-01-10 06:47:55 -08:00

Use a single space after colon in another errx().

Pointed out by Kris Katterjohn
This commit is contained in:
tb 2018-08-01 13:35:33 +00:00
parent 152b0eae2f
commit aab43efd68

View 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");