Skip to content

Commit

Permalink
Small fix
Browse files Browse the repository at this point in the history
  • Loading branch information
MCJack123 committed May 31, 2024
1 parent 5e9fed7 commit cb8af71
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ccryptolib/internal/util.lua
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ end
--- @param str string The 32-byte encoded exponent.
--- @return number[] bits The decoded clamped bits, divided by 8.
local function bits8(str)
return {unpack(bits(str), 4)}
return {table.unpack(bits(str), 4)}
end

return {
Expand Down

0 comments on commit cb8af71

Please sign in to comment.