| summaryrefslogtreecommitdiff |
diff options
| author | Nathanael Sensfelder <SpamShield0@MultiAgentSystems.org> | 2017-04-28 15:15:08 +0200 |
|---|---|---|
| committer | Nathanael Sensfelder <SpamShield0@MultiAgentSystems.org> | 2017-04-28 15:15:08 +0200 |
| commit | 333091f78934d55b7b6458c575d8f23f364636c8 (patch) | |
| tree | 8db1d59ff9aec1f61d5ac9c5ad3e750dc78e7a08 /src/error | |
| parent | 1d32728b9712702c9bca90d6dac370ff5fe2c214 (diff) | |
Fixes ?RLR eating first char; !P and !N messages.
Diffstat (limited to 'src/error')
| -rw-r--r-- | src/error/error.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/error/error.h b/src/error/error.h index 145c838..1d26faf 100644 --- a/src/error/error.h +++ b/src/error/error.h @@ -37,7 +37,7 @@ #endif #define JH_PRINT_STDERR(io, symbol, str, ...)\ - fprintf(io, "[" symbol "]" JH_LOCATION " " str "\n", __VA_ARGS__); + fprintf(io, "!AI [" symbol "]" JH_LOCATION " " str "\n", __VA_ARGS__); /* * Given that we use preprocessor contants as flags, we can expect the compilers @@ -94,7 +94,7 @@ /* For outputs without dynamic content (static). ******************************/ #define JH_PRINT_S_STDERR(io, symbol, str)\ - fprintf(io, "[" symbol "]" JH_LOCATION " " str "\n"); + fprintf(io, "!AI [" symbol "]" JH_LOCATION " " str "\n"); #define JH_S_DEBUG(io, flag, str)\ JH_ISOLATE\ |


