diff options
author | jackpoz <giacomopoz@gmail.com> | 2016-08-04 17:04:31 +0200 |
---|---|---|
committer | jackpoz <giacomopoz@gmail.com> | 2016-08-04 17:04:31 +0200 |
commit | 8538151ea6c1618af5314f3166c928bb7517cd0c (patch) | |
tree | 94d76b64822ddffd8faa208084cdfb1f0552c547 /src/common/Debugging/Errors.cpp | |
parent | d76e15b587173e44de45e764eade4f221f9cb715 (diff) |
Common/Debugging: Reduce differences between 3.3.5 and 6.x branches
Code functionality shouldn't have been modified.
Diffstat (limited to 'src/common/Debugging/Errors.cpp')
-rw-r--r-- | src/common/Debugging/Errors.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/common/Debugging/Errors.cpp b/src/common/Debugging/Errors.cpp index 2ce00229e53..6157cd786cd 100644 --- a/src/common/Debugging/Errors.cpp +++ b/src/common/Debugging/Errors.cpp @@ -90,7 +90,7 @@ void Warning(char const* file, int line, char const* function, char const* messa void Abort(char const* file, int line, char const* function) { - fprintf(stderr, "\n%s:%i in %s ABORTED\n", + fprintf(stderr, "\n%s:%i in %s ABORTED.\n", file, line, function); *((volatile int*)NULL) = 0; exit(1); |