diff --git a/build/main.c b/build/main.c
index dd4f03ebf03cc668e49004ef37f13f716b95bd9f..48ca3eb820b5a0f2d26e29ddf975953c33f45667 100644
--- a/build/main.c
+++ b/build/main.c
@@ -86,7 +86,6 @@ static void WINCDECL signal_handler(int sig_num) {
   // reap zombies if SIGCHLD is ignored. On QNX, for example, waitpid()
   // fails if SIGCHLD is ignored, making system() non-functional.
   if (sig_num == SIGCHLD) {
-    printf("dssfdsfds\n");
     do {} while (waitpid(-1, &sig_num, WNOHANG) > 0);
   } else
 #endif