From b204b77b29708c1e40c57712cee66bb6506a1970 Mon Sep 17 00:00:00 2001 From: Andreas Kling Date: Fri, 26 Apr 2019 17:33:06 +0200 Subject: [PATCH] sh: Remove debug spam during command launch. --- Userland/sh.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Userland/sh.cpp b/Userland/sh.cpp index 9f41ee206c..19c642e00d 100644 --- a/Userland/sh.cpp +++ b/Userland/sh.cpp @@ -470,9 +470,10 @@ static int runcmd(char* cmd) #ifdef SH_DEBUG dbgprintf("Now we gotta wait on children:\n"); -#endif for (auto& child : children) dbgprintf(" %d\n", child); +#endif + int wstatus = 0; int rc;