gst/gstclock.c: fixes structure initialisation of clock (bug #134128)
authorDavid Schleef <ds@schleef.org>
Wed, 11 Feb 2004 19:02:00 +0000 (19:02 +0000)
committerDavid Schleef <ds@schleef.org>
Wed, 11 Feb 2004 19:02:00 +0000 (19:02 +0000)
Original commit message from CVS:
reviewed by: David Schleef  <ds@schleef.org>
* gst/gstclock.c: (gst_clock_entry_new): fixes structure
initialisation of clock (bug #134128)

ChangeLog
gst/gstclock.c

index 5d966a5..6499a54 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,10 @@
+2004-02-11  kost@imn.htwk-leipzig.de
+
+       reviewed by: David Schleef  <ds@schleef.org>
+
+       * gst/gstclock.c: (gst_clock_entry_new): fixes structure
+       initialisation of clock (bug #134128)
+
 2004-02-11  Thomas Vander Stichele  <thomas at apestaart dot org>
 
        * configure.ac:
index e8bbd7a..490c878 100644 (file)
@@ -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;