
29 Mar
2016
29 Mar
'16
3:23 a.m.
On Mon, Mar 28, 2016 at 15:19:36 +0800, Shanzhi Yu wrote:
Fix below error: storage/storage_backend_rbd.c: In function 'virStorageBackendRBDSetAllocation': storage/storage_backend_rbd.c:337:5: error: format '%llu' expects argument of type 'long long unsigned int', but argument 8 has type 'uint64_t' [-Werror=format=] VIR_DEBUG("Found %llu bytes allocated for RBD image %s",
Signed-off-by: Shanzhi Yu <shyu@redhat.com> --- src/storage/storage_backend_rbd.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
NACK, the correct approach is to use "size_t" as virStorageBackendRBDRefreshVolInfoCb is getting that as the size info. The callback has to be fixed too. I've pushed the correct version. Peter