Qualify hash as such

Attempt to fix #2656

git-svn-id: http://svn.osgeo.org/postgis/trunk@12280 b70326c6-7e19-0410-871a-916f4a2858ee
This commit is contained in:
Sandro Santilli 2014-02-25 08:32:06 +00:00
parent 7ec77b0b44
commit f56ed646ae

View file

@ -1,4 +1,4 @@
#!/usr/bin/perl
#!/usr/bin/perl -w
#
# PostGIS - Spatial Types for PostgreSQL
@ -112,7 +112,7 @@ sub find_last_updated
{
my $type = shift;
my $sig = shift;
for my $ver ( sort { $b cmp $a } keys $objs ) {
for my $ver ( sort { $b cmp $a } keys %$objs ) {
if ( $objs->{$ver}->{$type}->{$sig} ) {
return $ver;
}