summaryrefslogtreecommitdiff
path: root/gst/gstcaps.c
diff options
context:
space:
mode:
Diffstat (limited to 'gst/gstcaps.c')
-rw-r--r--gst/gstcaps.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/gst/gstcaps.c b/gst/gstcaps.c
index d9268e48d7..ebdaccc301 100644
--- a/gst/gstcaps.c
+++ b/gst/gstcaps.c
@@ -252,11 +252,11 @@ gst_caps_get_type_id (GstCaps *caps)
* Set the type id of the caps.
*/
void
-gst_caps_set_type_id (GstCaps *caps, guint16 typeid)
+gst_caps_set_type_id (GstCaps *caps, guint16 type_id)
{
g_return_if_fail (caps != NULL);
- caps->id = typeid;
+ caps->id = type_id;
}
/**