Browse Source

gitweb: Fix typo in git_patchset_body

Signed-off-by: Jakub Narebski <jnareb@gmail.com>
Signed-off-by: Junio C Hamano <junkio@cox.net>
maint
Jakub Narebski 19 years ago committed by Junio C Hamano
parent
commit
c8a99d7674
  1. 2
      gitweb/gitweb.perl

2
gitweb/gitweb.perl

@ -1656,7 +1656,7 @@ sub git_patchset_body {
print "<div class=\"patchset\">\n"; print "<div class=\"patchset\">\n";


LINE: LINE:
while (my $patch_line @$fd>) { while (my $patch_line = <$fd>) {
chomp $patch_line; chomp $patch_line;


if ($patch_line =~ m/^diff /) { # "git diff" header if ($patch_line =~ m/^diff /) { # "git diff" header

Loading…
Cancel
Save