From ee41ba665be4282eed3911c60679c036bae31dd6 Mon Sep 17 00:00:00 2001 From: Chris Lalancette Date: Fri, 16 Jul 2010 09:14:53 -0400 Subject: [PATCH] Fix compile on i686. When printing out size_t, we need to use %zu to make sure it will continue to compile on both 32-bit and 64-bit platforms. Signed-off-by: Chris Lalancette --- tools/virsh.c | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/tools/virsh.c b/tools/virsh.c index abc18bbc04..6da5080996 100644 --- a/tools/virsh.c +++ b/tools/virsh.c @@ -6495,11 +6495,11 @@ cmdVolList(vshControl *ctl, const vshCmd *cmd ATTRIBUTE_UNUSED) allocStrLength = stringLength; /* Display the string lengths for debugging */ - vshDebug(ctl, 5, "Longest name string = %lu chars\n", nameStrLength); - vshDebug(ctl, 5, "Longest path string = %lu chars\n", pathStrLength); - vshDebug(ctl, 5, "Longest type string = %lu chars\n", typeStrLength); - vshDebug(ctl, 5, "Longest capacity string = %lu chars\n", capStrLength); - vshDebug(ctl, 5, "Longest allocation string = %lu chars\n", allocStrLength); + vshDebug(ctl, 5, "Longest name string = %zu chars\n", nameStrLength); + vshDebug(ctl, 5, "Longest path string = %zu chars\n", pathStrLength); + vshDebug(ctl, 5, "Longest type string = %zu chars\n", typeStrLength); + vshDebug(ctl, 5, "Longest capacity string = %zu chars\n", capStrLength); + vshDebug(ctl, 5, "Longest allocation string = %zu chars\n", allocStrLength); /* Create the output template */ ret = virAsprintf(&outputStr,