mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
util.encodings: Use the 'idx' argument correctly [-Wunused-parameter]
This commit is contained in:
parent
14d77f86bb
commit
8956f32a9c
1 changed files with 1 additions and 1 deletions
|
@ -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) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue