mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-01-11 09:55:36 +00:00
let's not clobber our local variables -- i think this is a good short-term fix until i get to hacking on the standard...
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.
This commit is contained in:
parent
bede14df34
commit
16867f27e6
1 changed files with 2 additions and 2 deletions
|
@ -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 ();
|
||||
|
||||
|
|
Loading…
Reference in a new issue