aboutsummaryrefslogtreecommitdiffstats
path: root/executor
diff options
context:
space:
mode:
Diffstat (limited to 'executor')
-rw-r--r--executor/common.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/executor/common.h b/executor/common.h
index a283f7fbe..6cb7635f0 100644
--- a/executor/common.h
+++ b/executor/common.h
@@ -108,9 +108,9 @@ static void debug(const char* msg, ...)
return;
va_list args;
va_start(args, msg);
- vfprintf(stdout, msg, args);
+ vfprintf(stderr, msg, args);
va_end(args);
- fflush(stdout);
+ fflush(stderr);
}
#endif