Skip to content

Commit

Permalink
gitweb: Fix typo in git_patchset_body
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 <junkio@cox.net>
  • Loading branch information
Jakub Narebski authored and Junio C Hamano committed Aug 27, 2006
1 parent 0905255 commit c8a99d7
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 @@ -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
Expand Down

0 comments on commit c8a99d7

Please sign in to comment.