Skip to content

Commit 25760c0

Browse files
committed
Corrected refactored value.
1 parent 4b5348b commit 25760c0

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

arch/INFLATE.LUA

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -157,9 +157,9 @@ function inflate(r, w, z)
157157

158158
if t == 0 then
159159
-- uncompressed block: align, then read LEN, NLEN from byte stream
160-
local h, l, s = bs.ra(4)
160+
local h, l, s = bs.r(4)
161161
l = h:byte(1) + h:byte(2)*256
162-
s = bs.ra(l)
162+
s = bs.r(l)
163163
as(s)
164164

165165
elseif t == 1 or t == 2 then

0 commit comments

Comments
 (0)