From aee1d4983ef20bc1ecd5485f99951a9db6a5da0e Mon Sep 17 00:00:00 2001 From: Rusty Russell Date: Tue, 27 Mar 2012 14:15:18 +1030 Subject: [PATCH 1/1] tools/configurator: fix test for /proc/self/maps. Header file was wrong, suncc gives warning about missing open prototype, causing configurator to fail. --- tools/configurator/configurator.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/configurator/configurator.c b/tools/configurator/configurator.c index d5a23c2a..812b1b03 100644 --- a/tools/configurator/configurator.c +++ b/tools/configurator/configurator.c @@ -164,7 +164,7 @@ static struct test tests[] = { { "HAVE_PROC_SELF_MAPS", DEFINES_EVERYTHING|EXECUTE, NULL, "#include \n" "#include \n" - "#include \n" + "#include \n" "int main(void) {\n" " return open(\"/proc/self/maps\", O_RDONLY) != -1 ? 0 : 1;\n" "}\n" }, -- 2.39.2