kill trailing whitespace
authorDaniel Stenberg <daniel@haxx.se>
Mon, 9 Oct 2006 14:59:53 +0000 (14:59 +0000)
committerDaniel Stenberg <daniel@haxx.se>
Mon, 9 Oct 2006 14:59:53 +0000 (14:59 +0000)
src/mkhelp.pl

index 6610760..871aabc 100644 (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;
             }
         }