From ec2e4587270eda97927090a28d65864d3cb1e25e Mon Sep 17 00:00:00 2001 From: Andreas Gohr <andi@splitbrain.org> Date: Tue, 7 Jan 2014 18:47:26 +0100 Subject: [PATCH] removed superflous parameter --- inc/Tar.class.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; } -- GitLab