mirror of
https://gitlab.freedesktop.org/pipewire/pipewire.git
synced 2025-11-06 13:30:01 -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
|
|
@ -75,9 +75,9 @@ static int dump_file(const char *filename)
|
|||
return 0;
|
||||
}
|
||||
|
||||
static void on_process(void *userdata, struct spa_io_position *position)
|
||||
static void on_process(void *_data, struct spa_io_position *position)
|
||||
{
|
||||
struct data *data = userdata;
|
||||
struct data *data = _data;
|
||||
struct pw_buffer *b;
|
||||
struct spa_buffer *buf;
|
||||
struct spa_data *d;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue