mirror of
https://github.com/signalwire/freeswitch.git
synced 2025-03-05 02:02:01 +00:00
Wed Jan 28 13:21:36 CST 2009 Pekka Pessi <first.last@nokia.com>
* su-glib/su_source.c: fixed su_source_is_running() signature git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@11862 d0543943-73ff-0310-b7d9-9358b9ac24b2
This commit is contained in:
parent
e202543c76
commit
db953eb8e9
@ -125,7 +125,7 @@ static int su_source_remove_prepoll(su_port_t *port,
|
|||||||
su_root_t *root);
|
su_root_t *root);
|
||||||
static int su_source_multishot(su_port_t *self, int multishot);
|
static int su_source_multishot(su_port_t *self, int multishot);
|
||||||
static int su_source_wakeup(su_port_t *self);
|
static int su_source_wakeup(su_port_t *self);
|
||||||
static int su_source_is_running(su_port_t *self);
|
static int su_source_is_running(su_port_t const *self);
|
||||||
|
|
||||||
static char const *su_source_name(su_port_t const *self);
|
static char const *su_source_name(su_port_t const *self);
|
||||||
|
|
||||||
@ -944,7 +944,7 @@ void su_source_run(su_port_t *self)
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
static int su_source_is_running(su_port_t *self)
|
static int su_source_is_running(su_port_t const *self)
|
||||||
{
|
{
|
||||||
return self->sup_main_loop && g_main_loop_is_running(self->sup_main_loop);
|
return self->sup_main_loop && g_main_loop_is_running(self->sup_main_loop);
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user