diff options
author | José Fonseca <jfonseca@vmware.com> | 2014-09-14 21:59:30 +0100 |
---|---|---|
committer | José Fonseca <jfonseca@vmware.com> | 2014-09-15 19:57:24 +0100 |
commit | 3b591e0b0cefeab1e3d4a6dc6e4cd69536fa339d (patch) | |
tree | d62dfc3d10bede1a2eec069037cffa17e7645fc5 /common | |
parent | 86e79ac38e60b5400929add2ad292edd8bb5e6dc (diff) |
SQUASH: Fix NDBEUG
Diffstat (limited to 'common')
-rw-r--r-- | common/os_win32.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/common/os_win32.cpp b/common/os_win32.cpp index ef04de35..43f49dd1 100644 --- a/common/os_win32.cpp +++ b/common/os_win32.cpp @@ -275,7 +275,7 @@ unhandledExceptionHandler(PEXCEPTION_POINTERS pExceptionInfo) * - http://blogs.msdn.com/b/oldnewthing/archive/2010/07/30/10044061.aspx * - http://support.microsoft.com/kb/185294 */ -#ifndef NDEBUG +#ifdef NDEBUG if (pExceptionRecord->ExceptionCode == 0xe06d7363) { return EXCEPTION_CONTINUE_SEARCH; } |