From: Richard Henderson Date: Thu, 21 Dec 2023 03:15:48 +0000 (+1100) Subject: target/hppa: Constify VMState in machine.c X-Git-Tag: pull-nic-config.for-upstream-20240201~89^2~64 X-Git-Url: https://www.infradead.org/git/?a=commitdiff_plain;h=218eee704715a83d84525ab6f8a4575c34e7b4e7;p=users%2Fdwmw2%2Fqemu.git target/hppa: Constify VMState in machine.c Signed-off-by: Richard Henderson Message-Id: <20231221031652.119827-8-richard.henderson@linaro.org> --- diff --git a/target/hppa/machine.c b/target/hppa/machine.c index 15cbc5e6d0..211bfcf640 100644 --- a/target/hppa/machine.c +++ b/target/hppa/machine.c @@ -201,7 +201,7 @@ static const VMStateField vmstate_env_fields[] = { VMSTATE_END_OF_LIST() }; -static const VMStateDescription *vmstate_env_subsections[] = { +static const VMStateDescription * const vmstate_env_subsections[] = { &vmstate_tlb, NULL };