From 5fe57b5dc42f92f775cea9f4a51bcb045238f617 Mon Sep 17 00:00:00 2001 From: David Schleef Date: Wed, 11 Feb 2004 19:02:00 +0000 Subject: [PATCH] gst/gstclock.c: fixes structure initialisation of clock (bug #134128) Original commit message from CVS: reviewed by: David Schleef * gst/gstclock.c: (gst_clock_entry_new): fixes structure initialisation of clock (bug #134128) --- ChangeLog | 7 +++++++ gst/gstclock.c | 2 +- 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index 5d966a5..6499a54 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,10 @@ +2004-02-11 kost@imn.htwk-leipzig.de + + reviewed by: David Schleef + + * gst/gstclock.c: (gst_clock_entry_new): fixes structure + initialisation of clock (bug #134128) + 2004-02-11 Thomas Vander Stichele * configure.ac: diff --git a/gst/gstclock.c b/gst/gstclock.c index e8bbd7a..490c878 100644 --- a/gst/gstclock.c +++ b/gst/gstclock.c @@ -76,7 +76,7 @@ gst_clock_entry_new (GstClock *clock, GstClockTime time, entry->clock = clock; entry->time = time; - entry->interval = time; + entry->interval = interval; entry->type = type; entry->status = GST_CLOCK_ENTRY_OK; -- 2.7.4