From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mails.dpdk.org (mails.dpdk.org [217.70.189.124]) by inbox.dpdk.org (Postfix) with ESMTP id 8A95642ED9; Fri, 21 Jul 2023 12:57:29 +0200 (CEST) Received: from mails.dpdk.org (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 1832640DDC; Fri, 21 Jul 2023 12:57:29 +0200 (CEST) Received: from mga03.intel.com (mga03.intel.com [134.134.136.65]) by mails.dpdk.org (Postfix) with ESMTP id 2C21140DD8; Fri, 21 Jul 2023 12:57:26 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1689937047; x=1721473047; h=from:to:cc:subject:date:message-id:mime-version: content-transfer-encoding; bh=PDzWFXytY6E9IRrdxpE+A0q7cXAUx9VMp6NpstopcJ0=; b=OFncE4O2dRb++bmztjGqmHKAxD0M7G3QW96eWDRti4wn3ESYcgiXbvdA 4XeHktUDajsX57sUpRr7TUeDd7aERYpEikzJt3vYoFz3iFlujClqfqcHw ffQvp7qdshuSBAB4FB32YG5ZrJtszOWRl4seu/MelBKWM81vAnQv2YxgG GFS0KJ3/GL/JF0LjdOVt0QC7YgPFNLj6+3IZePQlusXISnxbFsVI68eee LDhG2rnoT4dSjfmhZZcxynEhhap+DDz8C/oo9nu6HptwdrSOeiLyRqlQc rmn3v7cpomvJ3yT3xTfaThWiJglse7Nd36pqEJY+MX/Szkp/gub7l8N76 g==; X-IronPort-AV: E=McAfee;i="6600,9927,10777"; a="370596788" X-IronPort-AV: E=Sophos;i="6.01,220,1684825200"; d="scan'208";a="370596788" Received: from fmsmga007.fm.intel.com ([10.253.24.52]) by orsmga103.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 21 Jul 2023 03:57:26 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=McAfee;i="6600,9927,10777"; a="728061912" X-IronPort-AV: E=Sophos;i="6.01,220,1684825200"; d="scan'208";a="728061912" Received: from silpixa00401385.ir.intel.com ([10.237.214.156]) by fmsmga007.fm.intel.com with ESMTP; 21 Jul 2023 03:57:25 -0700 From: Bruce Richardson To: dev@dpdk.org Cc: Bruce Richardson , stable@dpdk.org Subject: [PATCH] app/test: fix include of standard header Date: Fri, 21 Jul 2023 11:57:19 +0100 Message-Id: <20230721105719.53927-1-bruce.richardson@intel.com> X-Mailer: git-send-email 2.39.2 MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org 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: stable@dpdk.org Signed-off-by: Bruce Richardson --- 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 #include #include #include -- 2.39.2