let's not clobber our local variables -- i think this is a good short-term fix until...
authorAndy Wingo <wingo@pobox.com>
Mon, 22 Apr 2002 04:43:28 +0000 (04:43 +0000)
committerAndy Wingo <wingo@pobox.com>
Mon, 22 Apr 2002 04:43:28 +0000 (04:43 +0000)
Original commit message from CVS:
let's not clobber our local variables -- i think this is a good short-term
fix until i get to hacking on the standard scheduler again.

gst/schedulers/gststandardscheduler.c

index d16703d..099c4ce 100644 (file)
@@ -222,7 +222,7 @@ GstPluginDesc plugin_desc = {
   plugin_init
 };
 
-static inline cothread* sched_create (GstStandardScheduler *scheduler, GstElement *element, cothread_func func)
+static cothread* sched_create (GstStandardScheduler *scheduler, GstElement *element, cothread_func func)
 {
   cothread *ret = NULL;
 
@@ -235,7 +235,7 @@ static inline cothread* sched_create (GstStandardScheduler *scheduler, GstElemen
   return ret;
 }
 
-static inline void sched_switch (cothread *to)
+static void sched_switch (cothread *to)
 {
   cothread *from = cothread_self ();