diff options
Diffstat (limited to 'winsup/cygserver/bsd_mutex.cc')
-rw-r--r-- | winsup/cygserver/bsd_mutex.cc | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/winsup/cygserver/bsd_mutex.cc b/winsup/cygserver/bsd_mutex.cc index 68802856e..1a01dd2ea 100644 --- a/winsup/cygserver/bsd_mutex.cc +++ b/winsup/cygserver/bsd_mutex.cc @@ -49,17 +49,17 @@ mtx_owned (mtx *m) } void -_mtx_assert(mtx *m, int what, const char *file, int line) +_mtx_assert (mtx *m, int what, const char *file, int line) { switch (what) { case MA_OWNED: if (!mtx_owned (m)) - _panic(file, line, "Mutex %s not owned", m->name); + _panic (file, line, "Mutex %s not owned", m->name); break; case MA_NOTOWNED: if (mtx_owned (m)) - _panic(file, line, "Mutex %s is owned", m->name); + _panic (file, line, "Mutex %s is owned", m->name); break; default: break; |