diff --git a/ChangeLog b/ChangeLog index 5d966a5fde..6499a541e7 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 e8bbd7a504..490c878c2d 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;