Skip to content
Snippets Groups Projects
Commit ec2e4587 authored by Andreas Gohr's avatar Andreas Gohr
Browse files

removed superflous parameter

parent 2d4cf074
No related branches found
No related tags found
No related merge requests found
......@@ -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;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment