From b2260c2278c9b8422415eb316d6d771ebc6158de Mon Sep 17 00:00:00 2001 From: Justine Tunney Date: Fri, 29 Jan 2021 00:07:53 -0800 Subject: [PATCH] Remove printfs accidentally in release :( --- libc/calls/onntconsoleevent.c | 3 --- 1 file changed, 3 deletions(-) diff --git a/libc/calls/onntconsoleevent.c b/libc/calls/onntconsoleevent.c index 35e20cc7b..09fd32f8c 100644 --- a/libc/calls/onntconsoleevent.c +++ b/libc/calls/onntconsoleevent.c @@ -48,13 +48,10 @@ textwindows bool32 __onntconsoleevent(uint32_t CtrlType) { } switch ((rva = __sighandrvas[sig])) { case (uintptr_t)SIG_DFL: - dprintf(2, "__onntconsoleevent ExitProcess\n"); ExitProcess(128 + sig); case (uintptr_t)SIG_IGN: - dprintf(2, "__onntconsoleevent SIG_IGN\n"); return true; default: - dprintf(2, "__onntconsoleevent %#x\n", rva); memset(&info, 0, sizeof(info)); info.si_signo = sig; ((sigaction_f)(_base + rva))(sig, &info, NULL);