From cb4f7ea1ea2ade594e28fa628f4d2a154c4f57fa Mon Sep 17 00:00:00 2001 From: Ian Craggs Date: Tue, 10 Feb 2026 18:17:01 +0000 Subject: [PATCH] Remove printf I'd forgotten #1430 --- src/Socket.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/Socket.c b/src/Socket.c index 3017cedc..4909c6ab 100644 --- a/src/Socket.c +++ b/src/Socket.c @@ -293,8 +293,9 @@ int Socket_pair() int Socket_interrupt() { - printf("Calling interrupt\n"); + FUNC_ENTRY; int rc = send(sockfd[1], "\0", 1, 0); + FUNC_EXIT_RC(rc); return rc; }