From 302fe1235cf61df432cb3e5ff7e4fb7cc8561679 Mon Sep 17 00:00:00 2001 From: Stefan Weil Date: Fri, 6 Feb 2015 22:43:12 +0100 Subject: moxie: Fix warning caused by missing include statement Warning from the Sparse static analysis tool: target-moxie/machine.c:4:26: warning: symbol 'vmstate_moxie_cpu' was not declared. Should it be static? machine.h includes the missing declaration. Cc: Anthony Green Signed-off-by: Stefan Weil Signed-off-by: Michael Tokarev --- target-moxie/machine.c | 1 + 1 file changed, 1 insertion(+) (limited to 'target-moxie/machine.c') diff --git a/target-moxie/machine.c b/target-moxie/machine.c index da1a8572a8..b9316f0ec3 100644 --- a/target-moxie/machine.c +++ b/target-moxie/machine.c @@ -1,5 +1,6 @@ #include "hw/hw.h" #include "hw/boards.h" +#include "machine.h" const VMStateDescription vmstate_moxie_cpu = { .name = "cpu", -- cgit v1.2.3