From: Don Armstrong Date: Tue, 19 Jun 2007 13:02:21 +0000 (-0700) Subject: add missing semicolon X-Git-Tag: release/2.6.0~546^2 X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=509b83bb983eca21fe48ba4a6615a0817d503127;p=debbugs.git add missing semicolon --- diff --git a/Debbugs/Common.pm b/Debbugs/Common.pm index 46788e3f..4f36cb1c 100644 --- a/Debbugs/Common.pm +++ b/Debbugs/Common.pm @@ -356,7 +356,7 @@ sub lockpid { my ($pidfile) = @_; if (-e $pidfile) { my $pidfh = IO::File->new($pidfile, 'r') or - die "Unable to open pidfile $pidfile: $!" + die "Unable to open pidfile $pidfile: $!"; local $/; my $pid = <$pidfh>; ($pid) = $pid =~ /(\d+)/;