[libbluray-devel] Added missing line feeds
hpi1
git at videolan.org
Tue May 21 16:07:31 CEST 2013
libbluray | branch: master | hpi1 <hpi1 at anonymous.org> | Tue May 21 16:57:10 2013 +0300| [56eea691282a9e3d1d5bc0e3d7244eaa0924e466] | committer: hpi1
Added missing line feeds
> http://git.videolan.org/gitweb.cgi/libbluray.git/?a=commit;h=56eea691282a9e3d1d5bc0e3d7244eaa0924e466
---
src/util/mutex.h | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/src/util/mutex.h b/src/util/mutex.h
index d68b7d1..7704b13 100644
--- a/src/util/mutex.h
+++ b/src/util/mutex.h
@@ -74,7 +74,7 @@ static inline int bd_mutex_init(BD_MUTEX *p)
p->lock_count = 0;
if (pthread_mutex_init(&p->mutex, NULL)) {
- BD_DEBUG(DBG_BLURAY|DBG_CRIT, "bd_mutex_init() failed !");
+ BD_DEBUG(DBG_BLURAY|DBG_CRIT, "bd_mutex_init() failed !\n");
return -1;
}
@@ -84,7 +84,7 @@ static inline int bd_mutex_init(BD_MUTEX *p)
static inline int bd_mutex_destroy(BD_MUTEX *p)
{
if (pthread_mutex_destroy(&p->mutex)) {
- BD_DEBUG(DBG_BLURAY|DBG_CRIT, "bd_mutex_destroy() failed !");
+ BD_DEBUG(DBG_BLURAY|DBG_CRIT, "bd_mutex_destroy() failed !\n");
return -1;
}
return 0;
More information about the libbluray-devel
mailing list