aboutsummaryrefslogtreecommitdiff
path: root/src/common/Debugging
diff options
context:
space:
mode:
authorStormBytePP <stormbyte@gmail.com>2015-09-21 15:21:09 +0200
committerStormBytePP <stormbyte@gmail.com>2015-09-21 15:21:09 +0200
commitc1817dff37d22f99ecb7b237aa353a4550c8ada0 (patch)
tree1455d7e01142f71fe4c30266b1a0bf0a9c500910 /src/common/Debugging
parent0bed9d56cb9f10979492187c51042802272ce8ed (diff)
Fix a typo
Diffstat (limited to 'src/common/Debugging')
-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 4612fcb7910..454c73d5761 100644
--- a/src/common/Debugging/Errors.cpp
+++ b/src/common/Debugging/Errors.cpp
@@ -75,7 +75,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",
- file, line, function, message);
+ file, line, function);
}
} // namespace Trinity