From f0613160d20f0a3484ea8b6d7cb085c22a84682f Mon Sep 17 00:00:00 2001 From: Richard Henderson Date: Thu, 21 Dec 2023 14:16:07 +1100 Subject: hw/display: Constify VMState Signed-off-by: Richard Henderson Message-Id: <20231221031652.119827-27-richard.henderson@linaro.org> --- hw/display/artist.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'hw/display/artist.c') diff --git a/hw/display/artist.c b/hw/display/artist.c index fde050c..d913453 100644 --- a/hw/display/artist.c +++ b/hw/display/artist.c @@ -1435,7 +1435,7 @@ static const VMStateDescription vmstate_artist = { .version_id = 2, .minimum_version_id = 2, .post_load = vmstate_artist_post_load, - .fields = (VMStateField[]) { + .fields = (const VMStateField[]) { VMSTATE_UINT16(height, ARTISTState), VMSTATE_UINT16(width, ARTISTState), VMSTATE_UINT16(depth, ARTISTState), -- cgit v1.1