Module: gas-preprocessor Branch: master Commit: fad9080da871bb7924431a5e22fdaccae56b5950
Author: Martin Storsjo <[email protected]> Committer: Martin Storsjo <[email protected]> Date: Thu Mar 23 12:13:01 2017 +0200 Fix inconsistent indentation These two lines were accidentally indented with tabs. --- gas-preprocessor.pl | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gas-preprocessor.pl b/gas-preprocessor.pl index c5a71fb..35d201d 100755 --- a/gas-preprocessor.pl +++ b/gas-preprocessor.pl @@ -71,11 +71,11 @@ while (@ARGV) { usage(); exit 0; } elsif ($opt eq "--" ) { - @gcc_cmd = @ARGV; + @gcc_cmd = @ARGV; } elsif ($opt =~ /^-/) { die "option '$opt' is not known. See '$0 -help' for usage information\n"; } else { - push @gcc_cmd, $opt, @ARGV; + push @gcc_cmd, $opt, @ARGV; } last if (@gcc_cmd); } _______________________________________________ libav-commits mailing list [email protected] https://lists.libav.org/mailman/listinfo/libav-commits
