Remove printf I'd forgotten #1430

This commit is contained in:
Ian Craggs 2026-02-10 18:17:01 +00:00
parent 375e76d86a
commit cb4f7ea1ea
No known key found for this signature in database
GPG Key ID: A7AE1A8F2CCAB186
1 changed files with 2 additions and 1 deletions

View File

@ -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;
}