diff options
author | Markus Mohrhard <markus.mohrhard@googlemail.com> | 2012-04-26 19:25:05 +0200 |
---|---|---|
committer | Markus Mohrhard <markus.mohrhard@googlemail.com> | 2012-04-26 19:25:05 +0200 |
commit | d028dca13ba8cc0906fe613ad44a854d299b1b0b (patch) | |
tree | 3a7de5856c1647d0936f3b84cc4a63a0c0a90174 /sal | |
parent | e6a4ea3c9de11b445bdaa7279f41a84f00ea43e4 (diff) |
improve error message
Diffstat (limited to 'sal')
-rw-r--r-- | sal/osl/all/debugbase.cxx | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/sal/osl/all/debugbase.cxx b/sal/osl/all/debugbase.cxx index 9b3021f55885..6648d53bf4e2 100644 --- a/sal/osl/all/debugbase.cxx +++ b/sal/osl/all/debugbase.cxx @@ -136,6 +136,8 @@ bool SAL_CALL osl_detail_ObjectRegistry_checkObjectCount( buf.append( rData.m_pName ); buf.append( RTL_CONSTASCII_STRINGPARAM(": ") ); buf.append( static_cast<sal_Int64>(nSize) ); + buf.append("; Expected: "); + buf.append( static_cast<sal_Int64>(nExpected) ); DEBUGBASE_ENSURE( false, buf.makeStringAndClear().getStr() ); } return bRet; |