mdns: Unbreak test app cauased by async API change

Regression from f391d610e8
This commit is contained in:
David Cermak 2021-12-16 22:46:53 +01:00
parent 5b3b5f006f
commit c0d08faf91

View File

@ -46,7 +46,7 @@ static bool check_and_print_result(mdns_search_once_t *search)
{
// Check if any result is available
mdns_result_t * result = NULL;
if (!mdns_query_async_get_results(search, 0, &result)) {
if (!mdns_query_async_get_results(search, 0, &result, NULL)) {
return false;
}