From c0d08faf918a08bd54524115e64966c3106e0e1d Mon Sep 17 00:00:00 2001 From: David Cermak Date: Thu, 16 Dec 2021 22:46:53 +0100 Subject: [PATCH] mdns: Unbreak test app cauased by async API change Regression from f391d610e8185631b5361dc6c844c4c04aac30b1 --- tools/test_apps/protocols/mdns/main/mdns_test.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/test_apps/protocols/mdns/main/mdns_test.c b/tools/test_apps/protocols/mdns/main/mdns_test.c index 5459885167..effff0a3ca 100644 --- a/tools/test_apps/protocols/mdns/main/mdns_test.c +++ b/tools/test_apps/protocols/mdns/main/mdns_test.c @@ -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; }