Fix incorrect use of object in log statement. We are given a pointer to the object...
authorRasmus Rohde <rohde@duff.dk>
Mon, 10 Dec 2012 13:54:03 +0000 (14:54 +0100)
committerWim Taymans <wim.taymans@collabora.co.uk>
Mon, 10 Dec 2012 14:35:16 +0000 (15:35 +0100)
ext/libav/gstavpipe.h

index 4014511..48f6575 100644 (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