parse: use GST_PARSE_FLAG_NONE instead of 0

Fixes warning #188: enumerated type mixed with another type reported by ICC.
This commit is contained in:
Josep Torra 2011-08-25 22:48:54 +02:00
parent b26c5b99f2
commit 1db007e5bb

View file

@ -223,7 +223,7 @@ _gst_parse_escape (const gchar * str)
GstElement *
gst_parse_launchv (const gchar ** argv, GError ** error)
{
return gst_parse_launchv_full (argv, NULL, 0, error);
return gst_parse_launchv_full (argv, NULL, GST_PARSE_FLAG_NONE, error);
}
/**
@ -299,7 +299,8 @@ gst_parse_launchv_full (const gchar ** argv, GstParseContext * context,
GstElement *
gst_parse_launch (const gchar * pipeline_description, GError ** error)
{
return gst_parse_launch_full (pipeline_description, NULL, 0, error);
return gst_parse_launch_full (pipeline_description, NULL, GST_PARSE_FLAG_NONE,
error);
}
/**