checkpatch: use the correct indentation for which()

I copied the which subroutine from get_maintainer.pl.

Unfortunately, get_maintainer uses a 4 space indentation so use the
proper tab indentation instead.

Signed-off-by: Joe Perches <joe@perches.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
This commit is contained in:
Joe Perches 2014-08-06 16:11:10 -07:00 committed by Linus Torvalds
parent f2d7e4d439
commit bd474ca076

View File

@ -710,15 +710,15 @@ sub format_email {
} }
sub which { sub which {
my ($bin) = @_; my ($bin) = @_;
foreach my $path (split(/:/, $ENV{PATH})) { foreach my $path (split(/:/, $ENV{PATH})) {
if (-e "$path/$bin") { if (-e "$path/$bin") {
return "$path/$bin"; return "$path/$bin";
}
} }
}
return ""; return "";
} }
sub which_conf { sub which_conf {