From b97faf8e7ae85e6ded4008617982085f85e126e0 Mon Sep 17 00:00:00 2001 From: Marco Vanotti Date: Tue, 19 Mar 2019 23:52:40 -0700 Subject: executor: update fdio import path The Fuchsia team is going to remove the `lib/fdio/util.h` library. They have already moved all the functions to new header files. I have seen that fuchsia uses `fdio_service_connect`, which has been moved to the `lib/fdio/directory.h` header file. This commit just changes the import path in the fuchsia executor, and in the corresponding generated go file (I made that change by running `make generate`). --- 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 64cd37747..3dbbaff7c 100644 --- a/executor/common_fuchsia.h +++ b/executor/common_fuchsia.h @@ -4,7 +4,7 @@ // This file is shared between executor and csource package. #include -#include +#include #include #include #include -- cgit mrf-deployment