From: Ævar Arnfjörð Bjarmason Date: Thu, 30 Sep 2010 13:42:57 +0000 (+0000) Subject: send-email: get_patch_subject doesn't need a prototype X-Git-Tag: v1.7.4-rc0~160^2~12 X-Git-Url: http://git.ipfire.org/?p=thirdparty%2Fgit.git;a=commitdiff_plain;h=acf071b0923d9939b8f37ece18d2424f8e627b4d send-email: get_patch_subject doesn't need a prototype Signed-off-by: Ævar Arnfjörð Bjarmason Reviewed-by: Jeff King > Signed-off-by: Junio C Hamano --- diff --git a/git-send-email.perl b/git-send-email.perl index 488d8947da..b50c963793 100755 --- a/git-send-email.perl +++ b/git-send-email.perl @@ -549,7 +549,7 @@ if (@files) { usage(); } -sub get_patch_subject($) { +sub get_patch_subject { my $fn = shift; open (my $fh, '<', $fn); while (my $line = <$fh>) {