Skip to content

Commit fad9080

Browse files
committed
Fix inconsistent indentation
These two lines were accidentally indented with tabs.
1 parent dd811e7 commit fad9080

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

gas-preprocessor.pl

+2-2
Original file line numberDiff line numberDiff line change
@@ -71,11 +71,11 @@ ()
7171
usage();
7272
exit 0;
7373
} elsif ($opt eq "--" ) {
74-
@gcc_cmd = @ARGV;
74+
@gcc_cmd = @ARGV;
7575
} elsif ($opt =~ /^-/) {
7676
die "option '$opt' is not known. See '$0 -help' for usage information\n";
7777
} else {
78-
push @gcc_cmd, $opt, @ARGV;
78+
push @gcc_cmd, $opt, @ARGV;
7979
}
8080
last if (@gcc_cmd);
8181
}

0 commit comments

Comments
 (0)