mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-27 04:01:08 +00:00
tests: Fix macro by making it use the proper argument types
This commit is contained in:
parent
6b265346c4
commit
361467c9d9
1 changed files with 3 additions and 1 deletions
|
@ -35,7 +35,9 @@ my_fill_track_func (GESTimelineObject * object,
|
|||
}
|
||||
|
||||
#define gnl_object_check(gnlobj, start, duration, mstart, mduration, priority, active) { \
|
||||
guint64 pstart, pdur, pmstart, pmdur, pprio, pact; \
|
||||
guint64 pstart, pdur, pmstart, pmdur; \
|
||||
guint32 pprio; \
|
||||
gboolean pact; \
|
||||
g_object_get (gnlobj, "start", &pstart, "duration", &pdur, \
|
||||
"media-start", &pmstart, "media-duration", &pmdur, \
|
||||
"priority", &pprio, "active", &pact, \
|
||||
|
|
Loading…
Reference in a new issue