summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'src/pipe/pipe.h')
-rw-r--r--src/pipe/pipe.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/pipe/pipe.h b/src/pipe/pipe.h
index 9b9445c..4616050 100644
--- a/src/pipe/pipe.h
+++ b/src/pipe/pipe.h
@@ -39,7 +39,7 @@
#endif
#define ZoO_PRINT_STDERR(pipe, symbol, str, ...)\
- fprintf(pipe->out, "E [" symbol "]" ZoO_LOCATION " " str "\n", __VA_ARGS__);
+ fprintf(pipe->out, "[" symbol "] " ZoO_LOCATION " " str "\n", __VA_ARGS__);
/*
* Given that we use preprocessor contants as flags, we can expect the compilers
@@ -96,7 +96,7 @@
/* For outputs without dynamic content (static). ******************************/
#define ZoO_PRINT_S_STDERR(pipe, symbol, str)\
- fprintf(pipe->out, "E [" symbol "]" ZoO_LOCATION " " str "\n");
+ fprintf(pipe->out, "[" symbol "] " ZoO_LOCATION " " str "\n");
#define ZoO_S_DEBUG(pipe, flag, str)\
ZoO_ISOLATE\