]> git.donarmstrong.com Git - debbugs.git/commitdiff
add missing semicolon
authorDon Armstrong <don@donarmstrong.com>
Tue, 19 Jun 2007 13:02:21 +0000 (06:02 -0700)
committerDon Armstrong <don@donarmstrong.com>
Tue, 19 Jun 2007 13:02:21 +0000 (06:02 -0700)
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+)/;