summary refs log tree commit diff stats
diff options
context:
space:
mode:
-rw-r--r--hw/wm8750.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/hw/wm8750.c b/hw/wm8750.c
index 39383f43e5..9fbdf3d54b 100644
--- a/hw/wm8750.c
+++ b/hw/wm8750.c
@@ -563,7 +563,7 @@ static void wm8750_pre_save(void *opaque)
 {
     WM8750State *s = opaque;
 
-    s->rate_vmstate = (s->rate - wm_rate_table) / sizeof(*s->rate);
+    s->rate_vmstate = s->rate - wm_rate_table;
 }
 
 static int wm8750_post_load(void *opaque, int version_id)