Fix symbol s/luaL_checinteger/luaL_checkinteger/

This commit is contained in:
Cyril Romain 2016-04-26 23:08:06 +02:00
parent 94bb8fadc1
commit d9bdfb9f5f

View File

@ -294,7 +294,7 @@ static int lcurl_hpost_add_stream(lua_State *L){
}
#if defined(LCURL_INT_SIZE_64) && LCURL_CURL_VER_GE(7,46,0)
len = luaL_checinteger(L, i);
len = luaL_checkinteger(L, i);
#else
len = luaL_checklong(L, i);
#endif