cygserver: Small code cleanup

Signed-off-by: Corinna Vinschen <corinna@vinschen.de>
This commit is contained in:
Corinna Vinschen
2017-03-24 16:46:17 +01:00
parent b80b2c0119
commit 4dbcfeb7d0
2 changed files with 3 additions and 3 deletions

View File

@ -46,7 +46,7 @@ _mtx_lock (mtx *m, DWORD winpid, const char *file, int line)
_panic (file, line, "wait for %s in %d failed, %u", m->name, winpid,
GetLastError ());
m->owner = winpid;
_log (file, line, LOG_DEBUG, "Locked mutex %s/%u (%u)",
_log (file, line, LOG_DEBUG, "Locked mutex %s/%u (owner: %u)",
m->name, ++m->cnt, winpid);
}