mirror of
https://gitlab.freedesktop.org/pipewire/pipewire.git
synced 2025-11-04 13:30:12 -05:00
Cleanup argument names in methods and events interfaces
First method argument is object, first event argument is data. Closes !963
This commit is contained in:
parent
d3ea3142e1
commit
22fc9eec35
55 changed files with 636 additions and 636 deletions
|
|
@ -56,9 +56,9 @@ struct data {
|
|||
uint32_t id;
|
||||
};
|
||||
|
||||
static void proxy_event_bound(void *object, uint32_t global_id)
|
||||
static void proxy_event_bound(void *_data, uint32_t global_id)
|
||||
{
|
||||
struct data *data = object;
|
||||
struct data *data = _data;
|
||||
if (data->id != global_id) {
|
||||
printf("node id: %u\n", global_id);
|
||||
data->id = global_id;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue