gst/level/gstlevel.c: Fix compilation (also known as the classic 'fix code that someone committed without compiling i...

Original commit message from CVS:
* gst/level/gstlevel.c: (gst_level_message_new):
Fix compilation (also known as the classic 'fix code that someone
committed without compiling it first').
This commit is contained in:
Edward Hervey 2008-08-11 10:53:06 +00:00
parent e6663a01f2
commit 9b7172ae9e
2 changed files with 7 additions and 1 deletions

View file

@ -1,3 +1,9 @@
2008-08-11 Edward Hervey <edward.hervey@collabora.co.uk>
* gst/level/gstlevel.c: (gst_level_message_new):
Fix compilation (also known as the classic 'fix code that someone
committed without compiling it first').
2008-08-10 Stefan Kost <ensonic@users.sf.net>
* tests/check/elements/level.c:

View file

@ -502,7 +502,7 @@ static GstMessage *
gst_level_message_new (GstLevel * level, GstClockTime timestamp,
GstClockTime duration)
{
GstBaseTransform *trans = GST_BASE_TRANSFORM_CAST (l);
GstBaseTransform *trans = GST_BASE_TRANSFORM_CAST (level);
GstStructure *s;
GValue v = { 0, };
GstClockTime endtime, running_time, stream_time;