mirror of
git://xwords.git.sourceforge.net/gitroot/xwords/xwords
synced 2025-01-18 22:26:30 +01:00
log threadid as unsigned int
This commit is contained in:
parent
b49486fc3f
commit
84b77d4456
1 changed files with 2 additions and 1 deletions
|
@ -47,7 +47,8 @@ CidInfo::SetOwner( pthread_t owner )
|
|||
m_owner = owner;
|
||||
}
|
||||
assert( 0 <= m_ownerCount );
|
||||
logf( XW_LOGINFO, "%s(owner=%d); m_ownerCount=%d", __func__, owner, m_ownerCount );
|
||||
logf( XW_LOGINFO, "%s(owner=%u); m_ownerCount now %d", __func__, owner,
|
||||
m_ownerCount );
|
||||
}
|
||||
|
||||
CidLock* CidLock::s_instance = NULL;
|
||||
|
|
Loading…
Reference in a new issue