[libvirt] [PATCH] storage/rbd: Use correct printf-modifier for uint64

Christophe Fergeau cfergeau at redhat.com
Fri Mar 25 10:02:21 UTC 2016


Ping?

On Mon, Mar 14, 2016 at 11:41:05AM +0100, Christophe Fergeau wrote:
> %zu is for size_t variables, not uint64 ones. This causes a warning when building on
> a 32 bit linux.
> ---
>  src/storage/storage_backend_rbd.c | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/src/storage/storage_backend_rbd.c b/src/storage/storage_backend_rbd.c
> index 7d04b39..d895cc6 100644
> --- a/src/storage/storage_backend_rbd.c
> +++ b/src/storage/storage_backend_rbd.c
> @@ -334,7 +334,7 @@ virStorageBackendRBDSetAllocation(virStorageVolDefPtr vol,
>          goto cleanup;
>      }
>  
> -    VIR_DEBUG("Found %zu bytes allocated for RBD image %s",
> +    VIR_DEBUG("Found %llu bytes allocated for RBD image %s",
>                allocation, vol->name);
>  
>      vol->target.allocation = allocation;
> -- 
> 2.5.0
> 
> --
> libvir-list mailing list
> libvir-list at redhat.com
> https://www.redhat.com/mailman/listinfo/libvir-list
-------------- next part --------------
A non-text attachment was scrubbed...
Name: signature.asc
Type: application/pgp-signature
Size: 819 bytes
Desc: not available
URL: <http://listman.redhat.com/archives/libvir-list/attachments/20160325/8a6722b8/attachment-0001.sig>


More information about the libvir-list mailing list