From d4829d49920e123ce016a087571070268d6e8b2a Mon Sep 17 00:00:00 2001 From: Juan Quintela Date: Fri, 16 Oct 2009 15:26:53 +0200 Subject: vmstate: Add version arg to VMSTATE_SINGLE_TEST() This allows to define VMSTATE_SINGLE with VMSTATE_SINGLE_TEST Signed-off-by: Juan Quintela Signed-off-by: Anthony Liguori --- target-i386/machine.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'target-i386') diff --git a/target-i386/machine.c b/target-i386/machine.c index 26d012df9..869c681f4 100644 --- a/target-i386/machine.c +++ b/target-i386/machine.c @@ -314,7 +314,7 @@ static const VMStateInfo vmstate_hack_uint64_as_uint32 = { }; #define VMSTATE_HACK_UINT32(_f, _s, _t) \ - VMSTATE_SINGLE_TEST(_f, _s, _t, vmstate_hack_uint64_as_uint32, uint64_t) + VMSTATE_SINGLE_TEST(_f, _s, _t, 0, vmstate_hack_uint64_as_uint32, uint64_t) #endif static void cpu_pre_save(void *opaque) -- cgit v1.2.3-65-gdbad