summary refs log tree commit diff stats
path: root/hw/s390x/sclpquiesce.c
diff options
context:
space:
mode:
authorRichard Henderson <richard.henderson@linaro.org>2023-12-21 14:16:31 +1100
committerRichard Henderson <richard.henderson@linaro.org>2023-12-30 07:38:06 +1100
commitb9b59a36c3087623f77d7c97f6e2b75c91bb555f (patch)
treec221dd5b288f8ab4b78658debee1441f0d4440e7 /hw/s390x/sclpquiesce.c
parenta80cc662255c1f67adcc86d6e279fb0d6684ef5e (diff)
downloadfocaccia-qemu-b9b59a36c3087623f77d7c97f6e2b75c91bb555f.tar.gz
focaccia-qemu-b9b59a36c3087623f77d7c97f6e2b75c91bb555f.zip
hw/s390x: Constify VMState
Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
Message-Id: <20231221031652.119827-51-richard.henderson@linaro.org>
Diffstat (limited to 'hw/s390x/sclpquiesce.c')
-rw-r--r--hw/s390x/sclpquiesce.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/hw/s390x/sclpquiesce.c b/hw/s390x/sclpquiesce.c
index a641089929..14936aa94b 100644
--- a/hw/s390x/sclpquiesce.c
+++ b/hw/s390x/sclpquiesce.c
@@ -72,7 +72,7 @@ static const VMStateDescription vmstate_sclpquiesce = {
     .name = TYPE_SCLP_QUIESCE,
     .version_id = 0,
     .minimum_version_id = 0,
-    .fields = (VMStateField[]) {
+    .fields = (const VMStateField[]) {
         VMSTATE_BOOL(event_pending, SCLPEvent),
         VMSTATE_END_OF_LIST()
      }