From 228ba21e4fe702393b5e131ea14bbbfceff3f0b1 Mon Sep 17 00:00:00 2001 From: ame Date: Mon, 1 Dec 2025 04:27:44 -0600 Subject: more stderr oh also fprintf not sprintf silly --- src/net.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/net.c') diff --git a/src/net.c b/src/net.c index c9e424e..abab731 100644 --- a/src/net.c +++ b/src/net.c @@ -878,7 +878,7 @@ void* handle_client(void *_arg){ //call the function if(lua_pcall(L, 2, 0, 0) != 0){ - printf("(net thread) %s\n", lua_tostring(L, -1)); + fprintf(stderr, "(net thread) %s\n", lua_tostring(L, -1)); //send an error message if send has not been called if(client_fd >= 0) net_error(client_fd, 500); -- cgit v1.2.3