From 4fc452344afd1abf10ec3c8250bc5f3336939118 Mon Sep 17 00:00:00 2001 From: Rasmus Rohde Date: Mon, 10 Dec 2012 14:54:03 +0100 Subject: [PATCH] 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. --- ext/libav/gstavpipe.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ext/libav/gstavpipe.h b/ext/libav/gstavpipe.h index 4014511..48f6575 100644 --- a/ext/libav/gstavpipe.h +++ b/ext/libav/gstavpipe.h @@ -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 -- 2.7.4