From: Rasmus Rohde Date: Mon, 10 Dec 2012 13:54:03 +0000 (+0100) Subject: Fix incorrect use of object in log statement. We are given a pointer to the object... X-Git-Tag: 1.1.1~70 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=4fc452344afd1abf10ec3c8250bc5f3336939118;p=platform%2Fupstream%2Fgst-libav.git 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. --- 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