Skip to content

Commit

Permalink
perl5db.pl: Fix indirect syntax
Browse files Browse the repository at this point in the history
Fixes #21589
  • Loading branch information
rwp0 authored and khwilliamson committed Nov 3, 2023
1 parent 5314ff9 commit 61a1c8e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/perl5db.pl
Expand Up @@ -532,7 +532,7 @@ BEGIN
use vars qw($VERSION $header);

# bump to X.XX in blead, only use X.XX_XX in maint
$VERSION = '1.78';
$VERSION = '1.79';

$header = "perl5db.pl version $VERSION";

Expand Down Expand Up @@ -871,7 +871,7 @@ BEGIN
if ($ENV{PERL5DB_THREADED}) {
require threads;
require threads::shared;
import threads::shared qw(share);
threads::shared->import('share');
$DBGR;
share(\$DBGR);
lock($DBGR);
Expand Down

0 comments on commit 61a1c8e

Please sign in to comment.