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:
Quentin Wenger 2021-09-27 15:09:32 +02:00 committed by Wim Taymans
parent d3ea3142e1
commit 22fc9eec35
55 changed files with 636 additions and 636 deletions

View file

@ -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;