diff options
author | Francois Pons <fpons@mandriva.com> | 2000-05-02 08:21:53 +0000 |
---|---|---|
committer | Francois Pons <fpons@mandriva.com> | 2000-05-02 08:21:53 +0000 |
commit | f3807275cf85b2081526cbe1a0e559e183741af3 (patch) | |
tree | 8cd91f05fbd811aa9b9a724c30e2171a9ba525fb /perl-install/resize_fat/io.pm | |
parent | e3093b811019cc0467f38b744e12ec6871a8d17e (diff) | |
download | drakx-f3807275cf85b2081526cbe1a0e559e183741af3.tar drakx-f3807275cf85b2081526cbe1a0e559e183741af3.tar.gz drakx-f3807275cf85b2081526cbe1a0e559e183741af3.tar.bz2 drakx-f3807275cf85b2081526cbe1a0e559e183741af3.tar.xz drakx-f3807275cf85b2081526cbe1a0e559e183741af3.zip |
*** empty log message ***
Diffstat (limited to 'perl-install/resize_fat/io.pm')
-rw-r--r-- | perl-install/resize_fat/io.pm | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/perl-install/resize_fat/io.pm b/perl-install/resize_fat/io.pm index 2c106b87c..6543f9118 100644 --- a/perl-install/resize_fat/io.pm +++ b/perl-install/resize_fat/io.pm @@ -11,6 +11,7 @@ use c; sub read($$$) { my ($fs, $pos, $size) = @_; + print "reading $size bytes at $pos\n"; my $buf = "\0" x $size; sysseek $fs->{fd}, $pos, 0 or die "seeking to byte #$pos failed on device $fs->{fs_name}"; sysread $fs->{fd}, $buf, $size or die "reading at byte #$pos failed on device $fs->{fs_name}"; |