From 8956f32a9c6fff30b6f604dba0a1ea0330712be1 Mon Sep 17 00:00:00 2001 From: Kim Alvefur Date: Thu, 5 Oct 2017 12:48:36 +0200 Subject: util.encodings: Use the 'idx' argument correctly [-Wunused-parameter] --- util-src/encodings.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'util-src/encodings.c') diff --git a/util-src/encodings.c b/util-src/encodings.c index 465819d5..d85c7cf6 100644 --- a/util-src/encodings.c +++ b/util-src/encodings.c @@ -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) { -- cgit v1.2.3