kill trailing whitespace

This commit is contained in:
Daniel Stenberg 2006-10-09 14:59:53 +00:00
parent a40dcca794
commit 66ee6d07f8

View File

@ -129,14 +129,14 @@ static const unsigned char hugehelpgz[] = {
HEAD
;
my $c=0;
print " ";
print " ";
for(@gzip) {
my @all=split(//, $_);
for(@all) {
my $num=ord($_);
printf("0x%02x, ", 0+$num);
printf(" 0x%02x,", 0+$num);
if(++$c>11) {
print "\n ";
print "\n ";
$c=0;
}
}