mirror of
https://gitlab.freedesktop.org/pipewire/pipewire.git
synced 2025-11-06 13:30:01 -05:00
remote: fix ping event
This commit is contained in:
parent
236d346a3f
commit
a9b58618b2
1 changed files with 2 additions and 2 deletions
|
|
@ -98,11 +98,11 @@ pw_remote_update_state(struct pw_remote *remote, enum pw_remote_state state, con
|
|||
return 0;
|
||||
}
|
||||
|
||||
static int core_event_ping(void *data, uint32_t id, int seq)
|
||||
static void core_event_ping(void *data, uint32_t id, int seq)
|
||||
{
|
||||
struct pw_remote *this = data;
|
||||
pw_log_debug("remote %p: object %u ping %u", this, id, seq);
|
||||
return pw_core_proxy_pong(this->core_proxy, id, seq);
|
||||
pw_core_proxy_pong(this->core_proxy, id, seq);
|
||||
}
|
||||
|
||||
static void core_event_done(void *data, uint32_t id, int seq)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue