diff options
author | Andreas Gohr <andi@splitbrain.org> | 2014-01-07 18:47:26 +0100 |
---|---|---|
committer | Andreas Gohr <andi@splitbrain.org> | 2014-01-07 18:47:48 +0100 |
commit | ec2e4587270eda97927090a28d65864d3cb1e25e (patch) | |
tree | 22539728d03d8c174237a4f4910a3fd3e8b81eaa /inc/Tar.class.php | |
parent | 2d4cf074a280ea56b104d328f98401c60fe22773 (diff) | |
download | rpg-ec2e4587270eda97927090a28d65864d3cb1e25e.tar.gz rpg-ec2e4587270eda97927090a28d65864d3cb1e25e.tar.bz2 |
removed superflous parameter
Diffstat (limited to 'inc/Tar.class.php')
-rw-r--r-- | inc/Tar.class.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/inc/Tar.class.php b/inc/Tar.class.php index bc87d7d29..903f7f35c 100644 --- a/inc/Tar.class.php +++ b/inc/Tar.class.php @@ -114,7 +114,7 @@ class Tar { $header = $this->parseHeader($read); if(!is_array($header)) continue; - $this->skipbytes(ceil($header['size'] / 512) * 512, 1); + $this->skipbytes(ceil($header['size'] / 512) * 512); $result[] = $header; } |