From 509b83bb983eca21fe48ba4a6615a0817d503127 Mon Sep 17 00:00:00 2001 From: Don Armstrong Date: Tue, 19 Jun 2007 06:02:21 -0700 Subject: [PATCH] add missing semicolon --- Debbugs/Common.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Debbugs/Common.pm b/Debbugs/Common.pm index 46788e3..4f36cb1 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+)/; -- 2.39.2