diff options
author | MitchesD <majklprofik@seznam.cz> | 2016-03-03 19:58:28 +0100 |
---|---|---|
committer | Shauren <shauren.trinity@gmail.com> | 2016-03-12 23:52:51 +0100 |
commit | caef32d3757ae81f184150c8cef0a128b3a13a01 (patch) | |
tree | 25429a69c4edac3fcc6ae7697289bc585d60d160 /src/common/Debugging/Errors.cpp | |
parent | fd819b09194b182e1429536454f8a80a423aaf1b (diff) |
Core/Misc: fix build
(cherry picked from commit ce5def332fa12ea4b2f3223fbaa4e41750da9cfb)
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 749cdec2742..2ce00229e53 100644 --- a/src/common/Debugging/Errors.cpp +++ b/src/common/Debugging/Errors.cpp @@ -96,7 +96,7 @@ void Abort(char const* file, int line, char const* function) exit(1); } -void AbortHandler(int sigval) +void AbortHandler(int /*sigval*/) { // nothing useful to log here, no way to pass args *((volatile int*)NULL) = 0; |