Skip to content

Commit

Permalink
gitweb: fix whitespace in config_to_multi (indent with tab)
Browse files Browse the repository at this point in the history
Signed-off-by: Jakub Narebski <jnareb@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
  • Loading branch information
Jakub Narebski authored and Junio C Hamano committed Dec 21, 2007
1 parent 8a82b13 commit d76a585
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion gitweb/gitweb.perl
Original file line number Diff line number Diff line change
Expand Up @@ -1511,7 +1511,7 @@ sub config_to_int {
sub config_to_multi {
my $val = shift;

return ref($val) ? $val : (defined($val) ? [ $val ] : []);
return ref($val) ? $val : (defined($val) ? [ $val ] : []);
}

sub git_get_project_config {
Expand Down

0 comments on commit d76a585

Please sign in to comment.