From d8edd95800aa4c853d3dc28dd35c2bbf4b91c0d2 Mon Sep 17 00:00:00 2001 From: Dmitry Vyukov Date: Wed, 6 Jun 2018 16:14:00 +0200 Subject: executor: fix zx_port_wait use The call signature has changed in zircon. --- executor/common_fuchsia.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'executor') diff --git a/executor/common_fuchsia.h b/executor/common_fuchsia.h index 1c5762199..8b5b9f6a0 100644 --- a/executor/common_fuchsia.h +++ b/executor/common_fuchsia.h @@ -66,7 +66,7 @@ static void* ex_handler(void* arg) zx_handle_t port = (zx_handle_t)(long)arg; for (int i = 0; i < 10000; i++) { zx_port_packet_t packet = {}; - zx_status_t status = zx_port_wait(port, ZX_TIME_INFINITE, &packet, 0); + zx_status_t status = zx_port_wait(port, ZX_TIME_INFINITE, &packet); if (status != ZX_OK) { debug("zx_port_wait failed: %d\n", status); continue; -- cgit mrf-deployment