[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [Xen-changelog] [xen staging] libxl_qmp: Fix use of DEBUG_RECEIVED
commit 0c04dec663f1d976669cccc19c8c3574c9a5ce5c Author: Anthony PERARD <anthony.perard@xxxxxxxxxx> AuthorDate: Fri Jul 27 15:05:45 2018 +0100 Commit: Wei Liu <wei.liu2@xxxxxxxxxx> CommitDate: Mon Jul 30 14:46:32 2018 +0100 libxl_qmp: Fix use of DEBUG_RECEIVED This patch fix complilation error with #define DEBUG_RECEIVED of the macro DEBUG_REPORT_RECEIVED. error: field precision specifier â??.*â?? expects argument of type â??intâ??, but argument 9 has type â??ssize_t {aka long int}â?? Signed-off-by: Anthony PERARD <anthony.perard@xxxxxxxxxx> Acked-by: Wei Liu <wei.liu2@xxxxxxxxxx> Acked-by: Ian Jackson <ian.jackson@xxxxxxxxxxxxx> --- tools/libxl/libxl_qmp.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/libxl/libxl_qmp.c b/tools/libxl/libxl_qmp.c index 4555d6ae36..27227802e4 100644 --- a/tools/libxl/libxl_qmp.c +++ b/tools/libxl/libxl_qmp.c @@ -528,7 +528,7 @@ static int qmp_next(libxl__gc *gc, libxl__qmp_handler *qmp) } qmp->buffer[rd] = '\0'; - DEBUG_REPORT_RECEIVED(qmp->domid, qmp->buffer, rd); + DEBUG_REPORT_RECEIVED(qmp->domid, qmp->buffer, (int)rd); do { char *end = NULL; -- generated by git-patchbot for /home/xen/git/xen.git#staging _______________________________________________ Xen-changelog mailing list Xen-changelog@xxxxxxxxxxxxxxxxxxxx https://lists.xenproject.org/xen-changelog
|
Lists.xenproject.org is hosted with RackSpace, monitoring our |