diff options
Diffstat (limited to 'scripts/Dpkg/Control/Hash.pm')
-rw-r--r-- | scripts/Dpkg/Control/Hash.pm | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/scripts/Dpkg/Control/Hash.pm b/scripts/Dpkg/Control/Hash.pm index 38ed1edc7..6084d3a97 100644 --- a/scripts/Dpkg/Control/Hash.pm +++ b/scripts/Dpkg/Control/Hash.pm @@ -103,11 +103,11 @@ sub new { # Object is a scalar reference and not a hash ref to avoid # infinite recursion due to overloading hash-derefencing my $self = \{ - 'in_order' => [], - 'out_order' => [], - 'allow_pgp' => 0, - 'allow_duplicate' => 0, - 'drop_empty' => 0, + in_order => [], + out_order => [], + allow_pgp => 0, + allow_duplicate => 0, + drop_empty => 0, }; bless $self, $class; |