From b9b2016bf88d42c7b4634db2a2df297840df464e Mon Sep 17 00:00:00 2001 From: dmiller Date: Wed, 25 Mar 2026 22:07:28 +0000 Subject: [PATCH] Fix lua_pushvfstring error: wrong format --- nse_dnet.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nse_dnet.cc b/nse_dnet.cc index 16ac63af8..5153eacbf 100644 --- a/nse_dnet.cc +++ b/nse_dnet.cc @@ -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)