summaryrefslogtreecommitdiff
path: root/gst/gstpipeline.h
diff options
context:
space:
mode:
authorDavid Schleef <ds@schleef.org>2003-12-09 02:39:31 +0000
committerDavid Schleef <ds@schleef.org>2003-12-09 02:39:31 +0000
commit1cd87b37e5782bfc4f9f5acebf39aaa23ec375b5 (patch)
tree03d6ebb6b34f596383bd6f37bca9b36e9c5830a5 /gst/gstpipeline.h
parentb9d7ea92eda8368795dee55990f990695c4f5464 (diff)
Change GST_.*_PADDING to _gst_padding[GST_PADDING];
Original commit message from CVS: Change GST_.*_PADDING to _gst_padding[GST_PADDING];
Diffstat (limited to 'gst/gstpipeline.h')
-rw-r--r--gst/gstpipeline.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/gst/gstpipeline.h b/gst/gstpipeline.h
index b63419558c..5dd5b11c06 100644
--- a/gst/gstpipeline.h
+++ b/gst/gstpipeline.h
@@ -41,13 +41,13 @@ typedef struct _GstPipelineClass GstPipelineClass;
struct _GstPipeline {
GstBin bin;
- GST_OBJECT_PADDING
+ gpointer _gst_reserved[GST_PADDING];
};
struct _GstPipelineClass {
GstBinClass parent_class;
- GST_CLASS_PADDING
+ gpointer _gst_reserved[GST_PADDING];
};
GType gst_pipeline_get_type (void);