diff options
author | Peter Valchev <pvalchev@cvs.openbsd.org> | 2001-07-17 02:24:01 +0000 |
---|---|---|
committer | Peter Valchev <pvalchev@cvs.openbsd.org> | 2001-07-17 02:24:01 +0000 |
commit | f4e7ed46357090ce61bed511ee4cb53fcfa67522 (patch) | |
tree | 2c26f79ad6c1190ba713dbb517a160af1e7c8a04 /usr.bin/tail | |
parent | fede51bc6df1cd1fce250efe151ecc1cb867f1d9 (diff) |
-Wall cleanup; ok deraadt
Diffstat (limited to 'usr.bin/tail')
-rw-r--r-- | usr.bin/tail/reverse.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.bin/tail/reverse.c b/usr.bin/tail/reverse.c index 49671c14fae..e3821f2b0ce 100644 --- a/usr.bin/tail/reverse.c +++ b/usr.bin/tail/reverse.c @@ -1,4 +1,4 @@ -/* $OpenBSD: reverse.c,v 1.9 2001/01/17 00:27:21 pjanzen Exp $ */ +/* $OpenBSD: reverse.c,v 1.10 2001/07/17 02:23:58 pvalchev Exp $ */ /* $NetBSD: reverse.c,v 1.6 1994/11/23 07:42:10 jtc Exp $ */ /*- @@ -41,7 +41,7 @@ #if 0 static char sccsid[] = "@(#)reverse.c 8.1 (Berkeley) 6/6/93"; #endif -static char rcsid[] = "$OpenBSD: reverse.c,v 1.9 2001/01/17 00:27:21 pjanzen Exp $"; +static char rcsid[] = "$OpenBSD: reverse.c,v 1.10 2001/07/17 02:23:58 pvalchev Exp $"; #endif /* not lint */ #include <sys/param.h> @@ -227,7 +227,7 @@ r_buf(fp) if (enomem) { (void)fprintf(stderr, - "tail: warning: %qd bytes discarded\n", enomem); + "tail: warning: %lld bytes discarded\n", (long long)enomem); rval = 1; } |