libbluray | branch: master | hpi1 <[email protected]> | Sat Jul 2 20:51:54 2011 +0300| [37457385cec67ac65e4313ed8a49bbe594d57e98] | committer: hpi1
Added missing line feeds > http://git.videolan.org/gitweb.cgi/libbluray.git/?a=commit;h=37457385cec67ac65e4313ed8a49bbe594d57e98 --- src/util/mutex.h | 6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/util/mutex.h b/src/util/mutex.h index 2aa03e4..d68b7d1 100644 --- a/src/util/mutex.h +++ b/src/util/mutex.h @@ -99,7 +99,7 @@ static int bd_mutex_lock(BD_MUTEX *p) } if (pthread_mutex_lock(&p->mutex)) { - BD_DEBUG(DBG_BLURAY|DBG_CRIT, "bd_mutex_lock() failed !"); + BD_DEBUG(DBG_BLURAY|DBG_CRIT, "bd_mutex_lock() failed !\n"); return -1; } @@ -112,7 +112,7 @@ static int bd_mutex_lock(BD_MUTEX *p) static int bd_mutex_unlock(BD_MUTEX *p) { if (!pthread_equal(p->owner, pthread_self())) { - BD_DEBUG(DBG_BLURAY|DBG_CRIT, "bd_mutex_unlock(): not owner !"); + BD_DEBUG(DBG_BLURAY|DBG_CRIT, "bd_mutex_unlock(): not owner !\n"); return -1; } @@ -126,7 +126,7 @@ static int bd_mutex_unlock(BD_MUTEX *p) p->owner = (pthread_t)-1; if (pthread_mutex_unlock(&p->mutex)) { - BD_DEBUG(DBG_BLURAY|DBG_CRIT, "bd_mutex_unlock() failed !"); + BD_DEBUG(DBG_BLURAY|DBG_CRIT, "bd_mutex_unlock() failed !\n"); return -1; } _______________________________________________ libbluray-devel mailing list [email protected] http://mailman.videolan.org/listinfo/libbluray-devel
