Index: gst/gstpipeline.h =================================================================== RCS file: /cvsroot/gstreamer/gstreamer/gst/gstpipeline.h,v retrieving revision 1.9 diff -u -r1.9 gstpipeline.h --- gst/gstpipeline.h 2001/03/07 21:52:55 1.9 +++ gst/gstpipeline.h 2001/03/10 00:52:30 @@ -57,7 +57,7 @@ }; GtkType gst_pipeline_get_type (void); -GstElement* gst_pipeline_new (guchar *name); +GstElement* gst_pipeline_new (const gchar *name); #define gst_pipeline_destroy(pipeline) gst_object_destroy(GST_OBJECT(pipeline)) void gst_pipeline_iterate (GstPipeline *pipeline); Index: gst/gstpipeline.c =================================================================== RCS file: /cvsroot/gstreamer/gstreamer/gst/gstpipeline.c,v retrieving revision 1.48 diff -u -r1.48 gstpipeline.c --- gst/gstpipeline.c 2001/03/07 21:52:55 1.48 +++ gst/gstpipeline.c 2001/03/10 00:52:31 @@ -107,7 +107,7 @@ * Returns: newly created GstPipeline */ GstElement* -gst_pipeline_new (guchar *name) +gst_pipeline_new (const gchar *name) { return gst_elementfactory_make ("pipeline", name); }