Skip to content

Commit

Permalink
fixes wrong lineno
Browse files Browse the repository at this point in the history
  • Loading branch information
sj-i committed Dec 19, 2020
1 parent 103e41c commit 2281f77
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -311,7 +311,7 @@ public function readOpline(int $pid, CData $current_execute_data): int
4
);
return $opline_raw[0]
+ ($opline_raw[1] << 9)
+ ($opline_raw[1] << 8)
+ ($opline_raw[2] << 16)
+ ($opline_raw[3] << 24);
}
Expand Down

0 comments on commit 2281f77

Please sign in to comment.