From: Philippe Mathieu-Daudé Date: Tue, 18 Jul 2017 06:10:04 +0000 (-0300) Subject: tests/qapi: use QEMU_IS_ALIGNED macro X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=9a6555e21a80498aeac28d3276bbde61ddb30c05;p=qemu.git tests/qapi: use QEMU_IS_ALIGNED macro Applied using the Coccinelle semantic patch scripts/coccinelle/use_osdep.cocci Signed-off-by: Philippe Mathieu-Daudé Signed-off-by: Michael Tokarev Reviewed-by: Marc-André Lureau --- diff --git a/tests/test-qobject-output-visitor.c b/tests/test-qobject-output-visitor.c index 3cf942414c..11e8c5aa40 100644 --- a/tests/test-qobject-output-visitor.c +++ b/tests/test-qobject-output-visitor.c @@ -572,7 +572,7 @@ static void init_native_list(UserDefNativeListUnion *cvalue) boolList **list = &cvalue->u.boolean.data; for (i = 0; i < 32; i++) { *list = g_new0(boolList, 1); - (*list)->value = (i % 3 == 0); + (*list)->value = QEMU_IS_ALIGNED(i, 3); (*list)->next = NULL; list = &(*list)->next; }