diff options
author | 1997-06-20 17:46:16 +0000 | |
---|---|---|
committer | 1997-06-20 17:46:16 +0000 | |
commit | ea9c0e1ce6c0b8cdc933fc87ea8aa8eb1287164d (patch) | |
tree | 491d8f58481bb931f83d570b83b5c3639c47250c | |
parent | I wasted a lot of paper because of the way that printcap mx is handled. (diff) | |
download | wireguard-openbsd-ea9c0e1ce6c0b8cdc933fc87ea8aa8eb1287164d.tar.xz wireguard-openbsd-ea9c0e1ce6c0b8cdc933fc87ea8aa8eb1287164d.zip |
add newline to message
-rw-r--r-- | usr.sbin/lpr/lpr/lpr.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.sbin/lpr/lpr/lpr.c b/usr.sbin/lpr/lpr/lpr.c index bc9d948eb19..4a71ca9c73f 100644 --- a/usr.sbin/lpr/lpr/lpr.c +++ b/usr.sbin/lpr/lpr/lpr.c @@ -1,4 +1,4 @@ -/* $OpenBSD: lpr.c,v 1.13 1997/06/20 17:45:14 kstailey Exp $ */ +/* $OpenBSD: lpr.c,v 1.14 1997/06/20 17:46:16 kstailey Exp $ */ /* $NetBSD: lpr.c,v 1.10 1996/03/21 18:12:25 jtc Exp $ */ /* @@ -50,7 +50,7 @@ static char copyright[] = #if 0 static char sccsid[] = "@(#)lpr.c 8.4 (Berkeley) 4/28/95"; #else -static char rcsid[] = "$OpenBSD: lpr.c,v 1.13 1997/06/20 17:45:14 kstailey Exp $"; +static char rcsid[] = "$OpenBSD: lpr.c,v 1.14 1997/06/20 17:46:16 kstailey Exp $"; #endif #endif /* not lint */ @@ -448,7 +448,7 @@ copy(f, n) */ printf("%s: %s: copy file is too large\n", name, n); - printf("%s: %s: WARNING: I stupidly sent a bunch of stuff to the printer anyway", name, n); + printf("%s: %s: WARNING: I stupidly sent a bunch of stuff to the printer anyway\n", name, n); break; } } |