From 6b2143ad648b2b09ab15110bd4a9a0dac3be4db2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marc-Andr=C3=A9=20Lureau?= Date: Tue, 20 Mar 2018 10:28:03 -0400 Subject: [PATCH] qlit: use QType instead of int Backports commit 3d96ea44d4dde442094b7d9e5b71ef61b4c4ae39 from qemu --- qemu/include/qapi/qmp/qlit.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/qemu/include/qapi/qmp/qlit.h b/qemu/include/qapi/qmp/qlit.h index 56f9d97b..f1ed082d 100644 --- a/qemu/include/qapi/qmp/qlit.h +++ b/qemu/include/qapi/qmp/qlit.h @@ -20,7 +20,7 @@ typedef struct QLitDictEntry QLitDictEntry; typedef struct QLitObject QLitObject; struct QLitObject { - int type; + QType type; union { bool qbool; int64_t qnum;