From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from dpdk.org (dpdk.org [92.243.14.124]) by inbox.dpdk.org (Postfix) with ESMTP id 1D300A0613 for ; Fri, 27 Sep 2019 11:27:23 +0200 (CEST) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id 0266E2C5E; Fri, 27 Sep 2019 11:27:23 +0200 (CEST) Received: from mga12.intel.com (mga12.intel.com [192.55.52.136]) by dpdk.org (Postfix) with ESMTP id 3D4AC2C5E for ; Fri, 27 Sep 2019 11:27:21 +0200 (CEST) X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from fmsmga005.fm.intel.com ([10.253.24.32]) by fmsmga106.fm.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 27 Sep 2019 02:27:20 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.64,554,1559545200"; d="scan'208";a="389908714" Received: from silpixa00399953.ir.intel.com (HELO silpixa00399953.ger.corp.intel.com) ([10.237.223.206]) by fmsmga005.fm.intel.com with ESMTP; 27 Sep 2019 02:27:19 -0700 From: Ciara Power To: stable@dpdk.org Cc: Ciara Power , joyce.kong@arm.com Date: Fri, 27 Sep 2019 11:14:53 +0100 Message-Id: <20190927101453.61228-1-ciara.power@intel.com> X-Mailer: git-send-email 2.17.1 Subject: [dpdk-stable] [PATCH 17.11.7-rc1] test/rwlock: fix missing include X-BeenThere: stable@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: patches for DPDK stable branches List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: stable-bounces@dpdk.org Sender: "stable" Using PRIu64 in print statements caused errors, due to the inttypes header file not being included at the top of the file. This is now included. Fixes: 29e08d740ffc ("test/rwlock: benchmark on all available cores") Cc: joyce.kong@arm.com Cc: stable@dpdk.org Reported-by: WenhuiX Zhu Signed-off-by: Ciara Power --- test/test/test_rwlock.c | 1 + 1 file changed, 1 insertion(+) diff --git a/test/test/test_rwlock.c b/test/test/test_rwlock.c index 1f327fecf..06788d288 100644 --- a/test/test/test_rwlock.c +++ b/test/test/test_rwlock.c @@ -35,6 +35,7 @@ #include #include #include +#include #include #include -- 2.17.1