summaryrefslogtreecommitdiff
path: root/output.h
diff options
context:
space:
mode:
Diffstat (limited to 'output.h')
-rw-r--r--output.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/output.h b/output.h
index 1f0e2d7..5fef436 100644
--- a/output.h
+++ b/output.h
@@ -24,7 +24,7 @@ struct output
extern struct output *output_context;
extern unsigned int stdio_traced;
-#define OUTPUT_SET(_new) do{ if ((_new)->syncout) output_context = (_new); }while(0)
+#define OUTPUT_SET(_new) do{ output_context = (_new)->syncout ? (_new) : NULL; }while(0)
#define OUTPUT_UNSET() do{ output_context = NULL; }while(0)
#define OUTPUT_TRACED() do{ stdio_traced = 1; }while(0)