Fix incorrect use of object in log statement. We are given a pointer to the object and should not try to take the address of it.

This commit is contained in:
Rasmus Rohde 2012-12-10 14:54:03 +01:00 committed by Wim Taymans
parent b7471c1f5b
commit 4fc452344a

View file

@ -34,7 +34,7 @@ G_BEGIN_DECLS
} G_STMT_END
#define GST_FFMPEG_PIPE_MUTEX_UNLOCK(m) G_STMT_START { \
GST_LOG_OBJECT (&m, "unlocking tlock from thread %p", g_thread_self ()); \
GST_LOG_OBJECT (m, "unlocking tlock from thread %p", g_thread_self ()); \
g_mutex_unlock (&m->tlock); \
} G_STMT_END