diff options
Diffstat (limited to 'lib/byte.pm')
-rw-r--r-- | lib/byte.pm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/byte.pm b/lib/byte.pm index 33ffb769e8..569fa660e0 100644 --- a/lib/byte.pm +++ b/lib/byte.pm @@ -1,11 +1,11 @@ package byte; sub import { - $^H |= 0x00000010; + $^H |= 0x00000008; } sub unimport { - $^H &= ~0x00000010; + $^H &= ~0x00000008; } sub AUTOLOAD { |