diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2005-04-21 10:04:25 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2005-04-21 10:04:25 +0000 |
commit | 5dbabd077818372e24c7b6d031b001c97e31a6f9 (patch) | |
tree | 274ab81599b0a96e0ddb9ce227ebf9ac32e0a9f1 | |
parent | 6cbd109d374a5e621922c42e28f3ea65a1c11add (diff) | |
download | drakx-5dbabd077818372e24c7b6d031b001c97e31a6f9.tar drakx-5dbabd077818372e24c7b6d031b001c97e31a6f9.tar.gz drakx-5dbabd077818372e24c7b6d031b001c97e31a6f9.tar.bz2 drakx-5dbabd077818372e24c7b6d031b001c97e31a6f9.tar.xz drakx-5dbabd077818372e24c7b6d031b001c97e31a6f9.zip |
perl_checker fix
-rw-r--r-- | perl-install/fs/type.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/fs/type.pm b/perl-install/fs/type.pm index 5bf034d9e..5fcc7facc 100644 --- a/perl-install/fs/type.pm +++ b/perl-install/fs/type.pm @@ -308,7 +308,7 @@ sub type_subpart_from_magic { $p; } -sub true_local_fs_types { qw(ext3 ext2 reiserfs xfs jfs) } +sub true_local_fs_types() { qw(ext3 ext2 reiserfs xfs jfs) } sub isEmpty { !$_[0]{fs_type} && $_[0]{pt_type} == 0 } sub isEfi { arch() =~ /ia64/ && $_[0]{pt_type} == 0xef } |