1
0
mirror of https://github.com/nmap/nmap.git synced 2025-12-06 04:31:29 +00:00

Add a missing format argument.

This commit is contained in:
djalal
2011-03-03 14:48:45 +00:00
parent f0e7b6d3ab
commit 4e7e302c9c

View File

@@ -241,7 +241,7 @@ static int l_xml_write_escaped(lua_State *L)
const char *text;
text = luaL_checkstring(L, 1);
xml_write_escaped(text);
xml_write_escaped("%s", text);
return 0;
}