diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2002-11-06 22:52:57 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2002-11-06 22:52:57 +0000 |
commit | 8cb21146557a468e517db3123d481e5715971c7a (patch) | |
tree | 757b85c18f3a46f1ce331891e7f7aaf98a8b6702 /perl-install/partition_table.pm | |
parent | d3271db5a1609ee14b6f3a57aed7925644a5dabe (diff) | |
download | drakx-8cb21146557a468e517db3123d481e5715971c7a.tar drakx-8cb21146557a468e517db3123d481e5715971c7a.tar.gz drakx-8cb21146557a468e517db3123d481e5715971c7a.tar.bz2 drakx-8cb21146557a468e517db3123d481e5715971c7a.tar.xz drakx-8cb21146557a468e517db3123d481e5715971c7a.zip |
- have "local *FILEHANDLE" before each "open FILEHANDLE, ..."
- use some "cat_" and "output" where possible
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 c9428b006..a386630e0 100644 --- a/perl-install/partition_table.pm +++ b/perl-install/partition_table.pm @@ -792,8 +792,8 @@ sub load { sub save { my ($hd, $file) = @_; my @h = @{$hd}{@fields2save}; - local *F; require Data::Dumper; + local *F; open F, ">$file" and print F Data::Dumper->Dump([\@h], ['$h']), "\0" or die N("Error writing to file %s", $file); |