summaryrefslogtreecommitdiff
path: root/plugins
diff options
context:
space:
mode:
authorDavid I. Lehn <dlehn@users.sourceforge.net>2004-07-28 15:28:18 +0000
committerDavid I. Lehn <dlehn@users.sourceforge.net>2004-07-28 15:28:18 +0000
commit3030cec8b5b5b58d792e7c6f44cc1cb2feaff250 (patch)
treee82d6fd1b32710dd2c57122fec648915f14ba9e3 /plugins
parent2270883f00593e9fd73d6923a4be81250a3b5929 (diff)
Fix binary compatibility with 0.8.{0-3}. Closes bug 148692.
Original commit message from CVS: Fix binary compatibility with 0.8.{0-3}. Closes bug 148692.
Diffstat (limited to 'plugins')
-rw-r--r--plugins/elements/gstqueue.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/plugins/elements/gstqueue.h b/plugins/elements/gstqueue.h
index aab0c3b4db..e473f404ef 100644
--- a/plugins/elements/gstqueue.h
+++ b/plugins/elements/gstqueue.h
@@ -91,11 +91,12 @@ struct _GstQueue {
GTimeVal *timeval; /* the timeout for the queue locking */
GQueue *events; /* upstream events get decoupled here */
- GMutex *event_lock; /* lock when handling the events queue */
GstCaps *negotiated_caps;
- gpointer _gst_reserved[GST_PADDING];
+ GMutex *event_lock; /* lock when handling the events queue */
+
+ gpointer _gst_reserved[GST_PADDING - 1];
};
struct _GstQueueClass {