Minor fix to the fix

This commit is contained in:
pwpiwi 2018-03-28 08:36:23 +02:00 committed by GitHub
commit 56463d061e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -57,7 +57,7 @@ function checkBlock(blockNo, keys, keyType)
while remaining > 0 do while remaining > 0 do
local n,data = remaining, nil local n,data = remaining, nil
if remaining > 85 then n = 85 end if remaining > 85 then n = 85 end
local data = table.concat(keys,"",start,start + n) local data = table.concat(keys, "", start, start + n - 1)
--print("data",data) --print("data",data)
--print("data len", #data) --print("data len", #data)
print(("Testing block %d, keytype %d, with %d keys"):format(blockNo, keyType, n)) print(("Testing block %d, keytype %d, with %d keys"):format(blockNo, keyType, n))