diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2014-01-28 20:00:40 +0100 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2014-01-28 20:26:24 +0100 |
commit | bd4053f895167978978023309925c85c3826b31a (patch) | |
tree | d55fee87747210eea35e901d7f78d33346972172 /sal/osl/all | |
parent | cc2606a785bf1a57623b8c58e7388112279f6b9e (diff) |
bool improvements
Change-Id: I7ae2b02e435d21390843c6c56877a8ce3a73f9f2
Diffstat (limited to 'sal/osl/all')
-rw-r--r-- | sal/osl/all/debugbase.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sal/osl/all/debugbase.cxx b/sal/osl/all/debugbase.cxx index 8bc0c4619d3e..57238ce000f3 100644 --- a/sal/osl/all/debugbase.cxx +++ b/sal/osl/all/debugbase.cxx @@ -32,7 +32,7 @@ { \ if (!(c) && _OSL_GLOBAL osl_assertFailedLine(f, l, m)) \ _OSL_GLOBAL osl_breakDebug(); \ - } while (0) + } while (false) #define DEBUGBASE_ENSURE(c, m) DEBUGBASE_ENSURE_(c, OSL_THIS_FILE, __LINE__, m) namespace { |