Standard headers, or headers not in the current directory generally, should be wrapped in "<>" rather than in regular quotes "". Fix one instance of unistd.h being included using quotes
Fixes: df468c4937bb ("app/test: refactor bonding checks with macros") Cc: sta...@dpdk.org Signed-off-by: Bruce Richardson <bruce.richard...@intel.com> --- app/test/test_link_bonding.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/test/test_link_bonding.c b/app/test/test_link_bonding.c index 5c496352c2..2f46e4c6ee 100644 --- a/app/test/test_link_bonding.c +++ b/app/test/test_link_bonding.c @@ -2,7 +2,7 @@ * Copyright(c) 2010-2014 Intel Corporation */ -#include "unistd.h" +#include <unistd.h> #include <string.h> #include <stdarg.h> #include <stdio.h> -- 2.39.2