summaryrefslogtreecommitdiffstats
path: root/usr.bin/mt
diff options
context:
space:
mode:
authormjacob <mjacob@FreeBSD.org>1999-03-10 00:48:03 +0000
committermjacob <mjacob@FreeBSD.org>1999-03-10 00:48:03 +0000
commit541ee5a18f335a9a142393cb9b8865cb96e7a3dd (patch)
tree5346369f3bd93a9b9d0258547403fbe9235488db /usr.bin/mt
parent3c0b19774e39e0a7862a8a1b65ee82804ba9c163 (diff)
downloadFreeBSD-src-541ee5a18f335a9a142393cb9b8865cb96e7a3dd.zip
FreeBSD-src-541ee5a18f335a9a142393cb9b8865cb96e7a3dd.tar.gz
get rid of space padding for compression
Diffstat (limited to 'usr.bin/mt')
-rw-r--r--usr.bin/mt/mt.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/mt/mt.c b/usr.bin/mt/mt.c
index 71192ce..0335934 100644
--- a/usr.bin/mt/mt.c
+++ b/usr.bin/mt/mt.c
@@ -42,7 +42,7 @@ static const char copyright[] =
static char sccsid[] = "@(#)mt.c 8.2 (Berkeley) 5/4/95";
#endif
static const char rcsid[] =
- "$Id: mt.c,v 1.21 1999/02/05 02:46:21 mjacob Exp $";
+ "$Id: mt.c,v 1.22 1999/03/02 06:27:59 mjacob Exp $";
#endif /* not lint */
/*
@@ -589,7 +589,7 @@ comptostring(u_int32_t comp)
break;
if (ct->comp_number == 0xf0f0f0f0) {
- sprintf(buf, "0x%2x", comp);
+ sprintf(buf, "0x%x", comp);
return(buf);
} else
return(ct->name);
OpenPOWER on IntegriCloud