diff --git a/ChangeLog b/ChangeLog index 15989c7f90..5bc3336d2c 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2008-10-30 Stefan Kost + + * gst/audioresample/gstaudioresample.c: + Return the result of parent_class->event(). + 2008-10-28 Sebastian Dröge * gst/audioresample/gstaudioresample.c: diff --git a/gst/audioresample/gstaudioresample.c b/gst/audioresample/gstaudioresample.c index ea1af70621..52762202ee 100644 --- a/gst/audioresample/gstaudioresample.c +++ b/gst/audioresample/gstaudioresample.c @@ -503,9 +503,7 @@ audioresample_event (GstBaseTransform * base, GstEvent * event) default: break; } - parent_class->event (base, event); - - return TRUE; + return parent_class->event (base, event); } static GstFlowReturn