mirror of
https://github.com/git/git
synced 2024-10-30 04:01:21 +00:00
gitweb: Fix typo in git_patchset_body
Signed-off-by: Jakub Narebski <jnareb@gmail.com> Signed-off-by: Junio C Hamano <junkio@cox.net>
This commit is contained in:
parent
090525541f
commit
c8a99d7674
1 changed files with 1 additions and 1 deletions
|
@ -1656,7 +1656,7 @@ sub git_patchset_body {
|
|||
print "<div class=\"patchset\">\n";
|
||||
|
||||
LINE:
|
||||
while (my $patch_line @$fd>) {
|
||||
while (my $patch_line = <$fd>) {
|
||||
chomp $patch_line;
|
||||
|
||||
if ($patch_line =~ m/^diff /) { # "git diff" header
|
||||
|
|
Loading…
Reference in a new issue