Commit 58206f0e authored by Daniel Stenberg's avatar Daniel Stenberg
Browse files

cmdline-opts/gen.pl: trim off trailing spaces

parent c47b1ece
Loading
Loading
Loading
Loading
+3 −2
Original line number Diff line number Diff line
@@ -210,8 +210,9 @@ sub single {
    }
    if($foot[0]) {
        print "\n";
        print @foot;
        print "\n";
        my $f = join("", @foot);
        $f =~ s/ +\z//; # remove trailing space
        print "$f\n";
    }
    return 0;
}