Re: [dpdk-dev] [PATCH v2] test/power: fix 32-bit build

2018-07-13 Thread Thomas Monjalon
13/07/2018 06:51, Pablo de Lara: > 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", c

[dpdk-dev] [PATCH v2] test/power: fix 32-bit build

2018-07-13 Thread Pablo de Lara
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); ~