diff --git a/lib/avro/datum.php b/lib/avro/datum.php index e0dc286..1a17a06 100644 --- a/lib/avro/datum.php +++ b/lib/avro/datum.php @@ -1015,7 +1015,7 @@ public function skip_boolean() { return $this->skip(1); } public function skip_int() { return $this->skip_long(); } - protected function skip_long() + public function skip_long() { $b = ord($this->next_byte()); while ('' == $b || 0 != ($b & 0x80))