diff options
author | Daniel Stenberg <daniel@haxx.se> | 2006-10-09 14:59:53 +0000 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2006-10-09 14:59:53 +0000 |
commit | 66ee6d07f87103f001d261feedc4a8d1d9a53f50 (patch) | |
tree | 122347eb08f9176e9b1642f50d7d10e174596b27 /src | |
parent | a40dcca7949c776d4f20399fab27967233b4ae07 (diff) |
kill trailing whitespace
Diffstat (limited to 'src')
-rw-r--r-- | src/mkhelp.pl | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/mkhelp.pl b/src/mkhelp.pl index 6610760bf..871aabcb3 100644 --- a/src/mkhelp.pl +++ b/src/mkhelp.pl @@ -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; } } |