Richard Henderson <richard.hender...@linaro.org> wrote: > Signed-off-by: Richard Henderson <richard.hender...@linaro.org>
Reviewed-by: Juan Quintela <quint...@redhat.com> > --- > migration/global_state.c | 2 +- > migration/savevm.c | 10 +++++----- > 2 files changed, 6 insertions(+), 6 deletions(-) > > diff --git a/migration/global_state.c b/migration/global_state.c > index 4e2a9d8ec0..8ee15dbb06 100644 > --- a/migration/global_state.c > +++ b/migration/global_state.c > @@ -131,7 +131,7 @@ static const VMStateDescription vmstate_globalstate = { > .post_load = global_state_post_load, > .pre_save = global_state_pre_save, > .needed = global_state_needed, > - .fields = (VMStateField[]) { > + .fields = (const VMStateField[]) { I would really like to have an initializer that is nicer than this. The only thing that I have come up with is declaring it as its own variable, but that that is ugly for other reasons. Later, Juan.