3
0
mirror of https://git.kernel.org/pub/scm/network/wireless/iwd.git synced 2024-10-04 02:18:49 +02:00

client: abstract the value parameter for completion

This commit is contained in:
Tim Kourt 2018-05-31 15:01:30 -07:00 committed by Denis Kenzior
parent d402b6034a
commit 53124e8fff
2 changed files with 2 additions and 2 deletions

View File

@ -141,7 +141,7 @@ static void interface_update_properties(struct proxy_interface *proxy,
char *proxy_property_str_completion(const struct proxy_interface_type *type,
proxy_property_match_func_t function,
const char *property_name,
const char *value, int state)
const void *value, int state)
{
static struct l_queue *match;
static const struct l_queue_entry *entry;

View File

@ -77,7 +77,7 @@ void proxy_properties_display(const struct proxy_interface *proxy,
char *proxy_property_str_completion(const struct proxy_interface_type *type,
proxy_property_match_func_t function,
const char *property_name,
const char *value, int state);
const void *value, int state);
void *proxy_interface_get_data(const struct proxy_interface *proxy);
const char *proxy_interface_get_interface(const struct proxy_interface *proxy);