Subject: | Using a hash as a reference is deprecated |
Problem (warning message):
Using a hash as a reference is deprecated at C:/Programme/perl580/site/lib/Win32/TieRegistry/Dump.pm line 48.
Code line in question:
$info->{$root.$entry} = %$$key->{$entry};
Possible fix:
$info->{$root.$entry} = \$key->{$entry};