From 0c04dec663f1d976669cccc19c8c3574c9a5ce5c Mon Sep 17 00:00:00 2001 From: Anthony PERARD Date: Fri, 27 Jul 2018 15:05:45 +0100 Subject: [PATCH] libxl_qmp: Fix use of DEBUG_RECEIVED MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit 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 Acked-by: Wei Liu Acked-by: Ian Jackson --- 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; -- 2.30.2