get rid of space padding for compression

This commit is contained in:
Matt Jacob 1999-03-10 00:48:03 +00:00
parent 21c3b31ead
commit 3460adb2ef
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=44618

View File

@ -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);