diff options
author | pabs <pabs@pablotron.org> | 2007-08-23 02:14:19 -0400 |
---|---|---|
committer | pabs <pabs@pablotron.org> | 2007-08-23 02:14:19 -0400 |
commit | 0f7fe529547ef6bca5c14a2b1de6f4b0fd8ae1fa (patch) | |
tree | 02129569c2f19d98afef118213062edc5c626e1e /zipstream.php | |
parent | 5440a7cbdfbd3325376534395937fb0d5b7bb351 (diff) | |
download | zipstream-php-0f7fe529547ef6bca5c14a2b1de6f4b0fd8ae1fa.tar.bz2 zipstream-php-0f7fe529547ef6bca5c14a2b1de6f4b0fd8ae1fa.zip |
add missing paren.
Diffstat (limited to 'zipstream.php')
-rw-r--r-- | zipstream.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/zipstream.php b/zipstream.php index 13f0245..48d3b9e 100644 --- a/zipstream.php +++ b/zipstream.php @@ -209,7 +209,7 @@ class ZipStream { $d = array('year' => 1980, 'mon' => 1, 'mday' => 1, 'hours' => 0, 'minutes' => 0, 'seconds' => 0); return ($d['year'] << 25) | ($d['mon'] << 21) | ($d['mday'] << 16) | - ($d['hours'] << 11) | ($d['minutes'] << 5) | ($d['seconds'] >> 1; + ($d['hours'] << 11) | ($d['minutes'] << 5) | ($d['seconds'] >> 1); } function pack_fields($fields) { |