From d0f4e68c7a33bb51fbe3513c2f0fb6a07214a2ea 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 81d496ace9080fcd97df3cc7e9ce279531d67a48 * Original commit: espressif/esp-idf@c0d08faf918a08bd54524115e64966c3106e0e1d --- 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 545988516..effff0a3c 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; }