diff options
author | StormBytePP <stormbyte@gmail.com> | 2015-09-21 15:21:09 +0200 |
---|---|---|
committer | StormBytePP <stormbyte@gmail.com> | 2015-09-21 15:21:09 +0200 |
commit | c1817dff37d22f99ecb7b237aa353a4550c8ada0 (patch) | |
tree | 1455d7e01142f71fe4c30266b1a0bf0a9c500910 /src | |
parent | 0bed9d56cb9f10979492187c51042802272ce8ed (diff) |
Fix a typo
Diffstat (limited to 'src')
-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 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 |