diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2004-01-05 13:45:42 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2004-01-05 13:45:42 +0000 |
commit | eb709bbd83e5979dda24e401fb51a83f14412f39 (patch) | |
tree | 83c32db4c8d6f4afc3aa28ef8d895ca869e279e6 /perl-install/partition_table/raw.pm | |
parent | cdef0fd204617c22ce6daa871284f3b454afd7da (diff) | |
download | drakx-eb709bbd83e5979dda24e401fb51a83f14412f39.tar drakx-eb709bbd83e5979dda24e401fb51a83f14412f39.tar.gz drakx-eb709bbd83e5979dda24e401fb51a83f14412f39.tar.bz2 drakx-eb709bbd83e5979dda24e401fb51a83f14412f39.tar.xz drakx-eb709bbd83e5979dda24e401fb51a83f14412f39.zip |
perl_checker fixes
Diffstat (limited to 'perl-install/partition_table/raw.pm')
-rw-r--r-- | perl-install/partition_table/raw.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/partition_table/raw.pm b/perl-install/partition_table/raw.pm index acbec0458..5713e69d6 100644 --- a/perl-install/partition_table/raw.pm +++ b/perl-install/partition_table/raw.pm @@ -110,7 +110,7 @@ sub get_geometry($) { sub openit { my ($hd, $o_mode) = @_; - my $F; sysopen($F, $hd->{file}, $o_mode || 0) and $F; + my $F; sysopen($F, $hd->{file}, $o_mode || 0) && $F; } # cause kernel to re-read partition table |