win-pvdrivers
changeset 1101:99ce7ae22363
Make sure ASSERT's actually do crash the system rather than risk continuing
author | James Harper <james.harper@bendigoit.com.au> |
---|---|
date | Thu Sep 25 20:32:51 2014 +1000 (2014-09-25) |
parents | 86a97ef8cdf9 |
children | d5d8c518a090 |
files | common/include/xen_windows.h |
line diff
1.1 --- a/common/include/xen_windows.h Tue Jul 08 11:50:11 2014 +1000 1.2 +++ b/common/include/xen_windows.h Thu Sep 25 20:32:51 2014 +1000 1.3 @@ -292,7 +292,7 @@ XnPrintDump(); 1.4 #define XN_ASSERT(expr) \ 1.5 if (!(expr)) { \ 1.6 XnDebugPrint("ASSERT(%s) %s:%d\n", #expr, __FILE__, __LINE__); \ 1.7 - ASSERT(expr); \ 1.8 + NT_ASSERT(expr); \ 1.9 } 1.10 #else 1.11 #define XN_ASSERT(expr)