build: enforce luacheck in travis build

This commit is contained in:
Qingping Hou
2016-02-09 23:01:52 -08:00
parent b8ee33871f
commit 9bd2d42834
8 changed files with 21 additions and 19 deletions

View File

@@ -144,7 +144,7 @@ local function MD5Update(ctx, buf, len)
t = band(rshift(t, 3), 0x3f)
if (t > 0) then
p = ffi.cast("unsigned char *", ctx.input + t)
local p = ffi.cast("unsigned char *", ctx.input + t)
t = 64 - t
if (len < t) then