diff options
author | Jakub Narebski <jnareb@gmail.com> | 2006-08-26 19:14:23 +0200 |
---|---|---|
committer | Junio C Hamano <junkio@cox.net> | 2006-08-27 15:12:10 -0700 |
commit | c8a99d76749aeaa6b7fd8555724a4921eb677a37 (patch) | |
tree | 7a4316bb1b13dfdfe1ea141a52453e7ceeae1d1e | |
parent | 090525541ffd3f52867d5d26de5e02ce4998460b (diff) | |
download | git-c8a99d76749aeaa6b7fd8555724a4921eb677a37.tar.gz git-c8a99d76749aeaa6b7fd8555724a4921eb677a37.tar.xz |
gitweb: Fix typo in git_patchset_body
Signed-off-by: Jakub Narebski <jnareb@gmail.com>
Signed-off-by: Junio C Hamano <junkio@cox.net>
-rwxr-xr-x | gitweb/gitweb.perl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gitweb/gitweb.perl b/gitweb/gitweb.perl index ba5024af1..7b458bcf8 100755 --- a/gitweb/gitweb.perl +++ b/gitweb/gitweb.perl @@ -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 |