summaryrefslogtreecommitdiffstats
path: root/gnu/usr.bin/gzip
diff options
context:
space:
mode:
authorbde <bde@FreeBSD.org>1998-06-30 20:14:13 +0000
committerbde <bde@FreeBSD.org>1998-06-30 20:14:13 +0000
commit53d1b984ceb16d702513f6990576840c1c5d7cd0 (patch)
treeb5c7f440a7281f57b78d5886eee331e48601753c /gnu/usr.bin/gzip
parent080e3ef296732cdd3339a502a9a7484cd8751f50 (diff)
downloadFreeBSD-src-53d1b984ceb16d702513f6990576840c1c5d7cd0.zip
FreeBSD-src-53d1b984ceb16d702513f6990576840c1c5d7cd0.tar.gz
Fixed printf format errors.
Diffstat (limited to 'gnu/usr.bin/gzip')
-rw-r--r--gnu/usr.bin/gzip/trees.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/gnu/usr.bin/gzip/trees.c b/gnu/usr.bin/gzip/trees.c
index a9b35be..1bad589 100644
--- a/gnu/usr.bin/gzip/trees.c
+++ b/gnu/usr.bin/gzip/trees.c
@@ -59,7 +59,7 @@
#include "gzip.h"
#ifdef RCSID
-static char rcsid[] = "$Id: trees.c,v 1.6 1997/02/22 15:46:01 peter Exp $";
+static char rcsid[] = "$Id: trees.c,v 1.7 1997/08/29 16:14:19 sos Exp $";
#endif
/* ===========================================================================
@@ -1070,6 +1070,6 @@ local void set_file_type()
while (n < LITERALS) bin_freq += dyn_ltree[n++].Freq;
*file_type = bin_freq > (ascii_freq >> 2) ? BINARY : ASCII;
if (*file_type == BINARY && translate_eol) {
- WARN((stderr, "-l used on binary file", ""));
+ WARN((stderr, "-l used on binary file"));
}
}
OpenPOWER on IntegriCloud