util.encodings: Use the 'idx' argument correctly [-Wunused-parameter]

This commit is contained in:
Kim Alvefur 2017-10-05 12:48:36 +02:00
parent 14d77f86bb
commit 8956f32a9c

View file

@ -216,7 +216,7 @@ static const char *utf8_decode(const char *o, int *val) {
*/
const char *check_utf8(lua_State *L, int idx, size_t *l) {
size_t pos, len;
const char *s = luaL_checklstring(L, 1, &len);
const char *s = luaL_checklstring(L, idx, &len);
pos = 0;
while(pos <= len) {