Skip to content

Commit

Permalink
Fix ancient line numbering bug
Browse files Browse the repository at this point in the history
  • Loading branch information
David Christensen committed Jun 22, 2017
1 parent a2c2e85 commit fbb4368
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/interchange.PL
Expand Up @@ -584,7 +584,7 @@ sub catch_warnings {
return @_ unless $_[0] =~ /^Use of uninitialized /;
my $warn = $_[0];
my $configline;
if($warn =~ /CONFIG>\s+chunk\s+(\d+)/) {
if(($configline) = ($warn =~ /CONFIG>\s+chunk\s+(\d+)/)) {
return <<EOF;
There is a possible problem in this catalog at line $configline
of the catalog.cfg file. Please check it out.
Expand Down

0 comments on commit fbb4368

Please sign in to comment.