util.xml: Fix float formatting of line and columns in error (on Lua 5.3+)

This commit is contained in:
Kim Alvefur 2020-10-03 16:22:56 +02:00
parent 43d3c3ab81
commit 937336bacd

View file

@ -71,7 +71,7 @@ local parse_xml = (function()
if ok then
return stanza.tags[1];
else
return ok, err.." (line "..line..", col "..col..")";
return ok, ("%s (line %d, col %d))"):format(err, line, col);
end
end;
end)();