Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
fix that occourance of %Config
  • Loading branch information
FROGGS committed Sep 16, 2013
1 parent 74de2ff commit b9f6f24
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/Perl5/Terms.pm
Expand Up @@ -894,7 +894,7 @@ augment class Str {
for ^$amount {
my $a = 0;
$a +|= next_byte() +< ($_ * 0x08) for ^$CONFIG_INTSIZE;
$a -= 2 ** (8 * %Config<intsize>) if $a >= (2 ** (8 * $CONFIG_INTSIZE)) / 2;
$a -= 2 ** (8 * $CONFIG_INTSIZE) if $a >= (2 ** (8 * $CONFIG_INTSIZE)) / 2;
@fields.push($a)
}
}
Expand Down

0 comments on commit b9f6f24

Please sign in to comment.