diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2002-11-28 13:26:25 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2002-11-28 13:26:25 +0000 |
commit | ec747dc1097a5f80d220311dc89e9d6ec32cab31 (patch) | |
tree | 88da1b167952608d6ae5d7579927a85baf4767ce /perl-install/resize_fat/fat.pm | |
parent | 6bd6d9750078047ed4df33564ace48d1cb3c32a9 (diff) | |
download | drakx-backup-do-not-use-ec747dc1097a5f80d220311dc89e9d6ec32cab31.tar drakx-backup-do-not-use-ec747dc1097a5f80d220311dc89e9d6ec32cab31.tar.gz drakx-backup-do-not-use-ec747dc1097a5f80d220311dc89e9d6ec32cab31.tar.bz2 drakx-backup-do-not-use-ec747dc1097a5f80d220311dc89e9d6ec32cab31.tar.xz drakx-backup-do-not-use-ec747dc1097a5f80d220311dc89e9d6ec32cab31.zip |
perl_checker adaptations
Diffstat (limited to 'perl-install/resize_fat/fat.pm')
-rw-r--r-- | perl-install/resize_fat/fat.pm | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/perl-install/resize_fat/fat.pm b/perl-install/resize_fat/fat.pm index 71c50790e..c08232628 100644 --- a/perl-install/resize_fat/fat.pm +++ b/perl-install/resize_fat/fat.pm @@ -76,7 +76,7 @@ sub update { is_eof($old_next) ? set_eof($fs, $new) : - set_next ($fs, $new, $new_next); + set_next($fs, $new, $new_next); } } } @@ -113,7 +113,7 @@ sub is_eof($) { } sub set_eof($$) { my ($fs, $cluster) = @_; - set_next ($fs, $cluster, $resize_fat::bad_cluster_value + 1); + set_next($fs, $cluster, $resize_fat::bad_cluster_value + 1); } #- returns true if <cluster> is empty. Note that this includes bad clusters. @@ -129,7 +129,7 @@ sub is_available($) { } sub set_available($$) { my ($fs, $cluster) = @_; - set_next ($fs, $cluster, 0); + set_next($fs, $cluster, 0); } 1; |