aboutsummaryrefslogtreecommitdiff
path: root/src/common
diff options
context:
space:
mode:
authorjackpoz <giacomopoz@gmail.com>2016-08-04 17:04:31 +0200
committerjackpoz <giacomopoz@gmail.com>2016-08-04 17:04:31 +0200
commit8538151ea6c1618af5314f3166c928bb7517cd0c (patch)
tree94d76b64822ddffd8faa208084cdfb1f0552c547 /src/common
parentd76e15b587173e44de45e764eade4f221f9cb715 (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')
-rw-r--r--src/common/Debugging/Errors.cpp2
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);