diff options
Diffstat (limited to 'perl-install/partition_table.pm')
-rw-r--r-- | perl-install/partition_table.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/partition_table.pm b/perl-install/partition_table.pm index 8051142a8..0cd11e489 100644 --- a/perl-install/partition_table.pm +++ b/perl-install/partition_table.pm @@ -783,7 +783,7 @@ sub load { } $@ and die N("Restoring from file %s failed: %s", $file, $@); - ref $h eq 'ARRAY' or die N("Bad backup file"); + ref($h) eq 'ARRAY' or die N("Bad backup file"); my %h; @h{@fields2save} = @$h; |