Fix lua_pushvfstring error: wrong format

This commit is contained in:
dmiller 2026-03-25 22:07:28 +00:00
parent b64e0cb9f5
commit b9b2016bf8

View file

@ -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)