mirror of
https://github.com/nmap/nmap.git
synced 2026-05-13 16:57:06 +00:00
Fix lua_pushvfstring error: wrong format
This commit is contained in:
parent
b64e0cb9f5
commit
b9b2016bf8
1 changed files with 1 additions and 1 deletions
|
|
@ -215,7 +215,7 @@ static int ethernet_send (lua_State *L)
|
|||
if (sent == len)
|
||||
return nseU_success(L);
|
||||
else
|
||||
return nseU_safeerror(L, "netutil_eth_send error: %lu", sent);
|
||||
return nseU_safeerror(L, "netutil_eth_send error: %d", sent);
|
||||
}
|
||||
|
||||
static int ip_open (lua_State *L)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue