From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mga18.intel.com (mga18.intel.com [134.134.136.126]) by dpdk.org (Postfix) with ESMTP id 95A8B2B9E for ; Fri, 13 Jul 2018 14:36:18 +0200 (CEST) X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from orsmga001.jf.intel.com ([10.7.209.18]) by orsmga106.jf.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 13 Jul 2018 05:36:17 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.51,347,1526367600"; d="scan'208,217";a="72467278" Received: from rnicolau-mobl.ger.corp.intel.com (HELO [10.237.221.82]) ([10.237.221.82]) by orsmga001.jf.intel.com with ESMTP; 13 Jul 2018 05:36:07 -0700 To: Pablo de Lara , david.hunt@intel.com Cc: dev@dpdk.org References: <20180713041240.2722-1-pablo.de.lara.guarch@intel.com> From: Radu Nicolau Message-ID: Date: Fri, 13 Jul 2018 13:36:07 +0100 User-Agent: Mozilla/5.0 (Windows NT 10.0; WOW64; rv:52.0) Gecko/20100101 Thunderbird/52.5.0 MIME-Version: 1.0 In-Reply-To: <20180713041240.2722-1-pablo.de.lara.guarch@intel.com> Content-Language: en-US Content-Type: text/plain; charset=utf-8; format=flowed Content-Transfer-Encoding: 8bit X-Content-Filtered-By: Mailman/MimeDel 2.1.15 Subject: Re: [dpdk-dev] [PATCH] test/power: fix 32-bit build X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 13 Jul 2018 12:36:19 -0000 On 7/13/2018 5:12 AM, Pablo de Lara wrote: > Compilation issue: > > test/test/test_power_acpi_cpufreq.c:556:31: > error: format ‘%lx’ expects argument of type ‘long unsigned int’, > but argument 2 has type ‘uint64_t {aka long long unsigned int}’ > -Werror=format=] > > printf("ACPI: Capabilities %lx\n", caps.capabilities); > ~~^ ~~~~~~~~~~~~~~~~~ > %llx > > Fixes: 39e38d583075 ("test/power: add unit test for get capabilities API") > > Signed-off-by: Pablo de Lara > --- > Acked-by: Radu Nicolau