summaryrefslogtreecommitdiff
path: root/usr.bin/jot/jot.c
diff options
context:
space:
mode:
authorOkan Demirmen <okan@cvs.openbsd.org>2012-01-30 14:08:19 +0000
committerOkan Demirmen <okan@cvs.openbsd.org>2012-01-30 14:08:19 +0000
commit18a33d80941bb9e066c4ab8dd89e3c260b77bce4 (patch)
tree34ef98f804bb8a9124df3d1563d8c0670e50431d /usr.bin/jot/jot.c
parent2f2fe961ea62c6873d93f63427c200d60f6c3864 (diff)
typo in error message; ok krw@
Diffstat (limited to 'usr.bin/jot/jot.c')
-rw-r--r--usr.bin/jot/jot.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/jot/jot.c b/usr.bin/jot/jot.c
index cbff0f96830..8c8dbf8b9b4 100644
--- a/usr.bin/jot/jot.c
+++ b/usr.bin/jot/jot.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: jot.c,v 1.20 2009/10/27 23:59:39 deraadt Exp $ */
+/* $OpenBSD: jot.c,v 1.21 2012/01/30 14:08:18 okan Exp $ */
/* $NetBSD: jot.c,v 1.3 1994/12/02 20:29:43 pk Exp $ */
/*-
@@ -108,7 +108,7 @@ main(int argc, char *argv[])
case 's':
if (strlcpy(sepstring, optarg, sizeof(sepstring)) >=
sizeof(sepstring))
- errx(1, "-s word too long");
+ errx(1, "-s string too long");
break;
case 'p':
prec = strtonum(optarg, 0, INT_MAX, &errstr);