From: Stefan Weil Date: Sun, 16 Mar 2014 18:07:55 +0000 (+0100) Subject: target-arm: Add missing 'static' attribute X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=6df05bdd172d26b699fecf162c277286579f2c16;p=qemu.git target-arm: Add missing 'static' attribute This fixes a warning from the static code analysis (smatch). Signed-off-by: Stefan Weil Signed-off-by: Michael Tokarev --- diff --git a/target-arm/machine.c b/target-arm/machine.c index 8f9e7d4d28..7ced87af58 100644 --- a/target-arm/machine.c +++ b/target-arm/machine.c @@ -88,7 +88,7 @@ static bool m_needed(void *opaque) return arm_feature(env, ARM_FEATURE_M); } -const VMStateDescription vmstate_m = { +static const VMStateDescription vmstate_m = { .name = "cpu/m", .version_id = 1, .minimum_version_id = 1,