]> git.donarmstrong.com Git - debbugs.git/blobdiff - Debbugs/Common.pm
add missing semicolon
[debbugs.git] / Debbugs / Common.pm
index 46788e3f574127db62aab41c98a5530b0612e691..4f36cb1c5f27e05d8891e433e833124ff0860065 100644 (file)
@@ -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+)/;