Skip to content

Commit

Permalink
Merge pull request #11 from come-nc/patch-1
Browse files Browse the repository at this point in the history
Fix 32bit compatibility
  • Loading branch information
DeepDiver1975 committed Mar 28, 2023
2 parents 2267142 + 5c22807 commit e2b3a05
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Count64.php
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ function unpack32le($data) {
*/
function pack64le($data) {
if (is_object($data)) {
if ("Count64_32" == get_class($data)) {
if (Count64_32::class == get_class($data)) {
$value = $data->_getValue();
$hiBytess = $value[0];
$loBytess = $value[1];
Expand Down

0 comments on commit e2b3a05

Please sign in to comment.