examples/vm_power: fix 32-bit build

Compiler version:
gcc 10.2.1 "cc (GCC) 10.2.1 20200723 (Red Hat 10.2.1-1)"

Build error:
../examples/vm_power_manager/guest_cli/vm_power_cli_guest.c:346:23:
 warning: format ‘%ld’ expects argument of type ‘long int’, but
	argument 4 has type ‘uint64_t’ {aka ‘long long unsigned int’}
	[-Wformat=]
  346 |    cmdline_printf(cl, "Capabilities of [%d] vcore are:"
      |                       ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
......
  349 |      pkt_caps_list.turbo[i],
      |      ~~~~~~~~~~~~~~~~~~~~~~
      |                         |
      |                         uint64_t {aka long long unsigned int}

Fixes: 07525d1a04 ("examples/vm_power: send capabilities request from guest")
Cc: stable@dpdk.org

Signed-off-by: Ferruh Yigit <ferruh.yigit@intel.com>
Tested-by: David Marchand <david.marchand@redhat.com>
Signed-off-by: Thomas Monjalon <thomas@monjalon.net>
This commit is contained in:
Ferruh Yigit 2020-10-05 18:02:01 +01:00 committed by Thomas Monjalon
parent 4b3f8119c7
commit 984d99ccb0

View File

@ -344,13 +344,15 @@ cmd_query_caps_list_parsed(void *parsed_result,
unsigned int i; unsigned int i;
for (i = 0; i < pkt_caps_list.num_vcpu; ++i) for (i = 0; i < pkt_caps_list.num_vcpu; ++i)
cmdline_printf(cl, "Capabilities of [%d] vcore are:" cmdline_printf(cl, "Capabilities of [%d] vcore are:"
" turbo possibility: %ld, is priority core: %ld.\n", " turbo possibility: %" PRId64 ", "
"is priority core: %" PRId64 ".\n",
i, i,
pkt_caps_list.turbo[i], pkt_caps_list.turbo[i],
pkt_caps_list.priority[i]); pkt_caps_list.priority[i]);
} else { } else {
cmdline_printf(cl, "Capabilities of [%d] vcore are:" cmdline_printf(cl, "Capabilities of [%d] vcore are:"
" turbo possibility: %ld, is priority core: %ld.\n", " turbo possibility: %" PRId64 ", "
"is priority core: %" PRId64 ".\n",
lcore_id, lcore_id,
pkt_caps_list.turbo[lcore_id], pkt_caps_list.turbo[lcore_id],
pkt_caps_list.priority[lcore_id]); pkt_caps_list.priority[lcore_id]);