mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-04-26 06:54:49 +00:00
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:
parent
b7471c1f5b
commit
4fc452344a
1 changed files with 1 additions and 1 deletions
|
@ -34,7 +34,7 @@ G_BEGIN_DECLS
|
||||||
} G_STMT_END
|
} G_STMT_END
|
||||||
|
|
||||||
#define GST_FFMPEG_PIPE_MUTEX_UNLOCK(m) G_STMT_START { \
|
#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_mutex_unlock (&m->tlock); \
|
||||||
} G_STMT_END
|
} G_STMT_END
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue