From a10fcec6168bfd41e7104f870a00f83addf58710 Mon Sep 17 00:00:00 2001 From: Juan Quintela Date: Mon, 24 Aug 2009 18:42:49 +0200 Subject: [PATCH] ne2000: remove casts from void * Signed-off-by: Juan Quintela Signed-off-by: Anthony Liguori --- hw/ne2000.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/hw/ne2000.c b/hw/ne2000.c index 9f685b4e9f..b17a0fada0 100644 --- a/hw/ne2000.c +++ b/hw/ne2000.c @@ -650,7 +650,7 @@ static uint32_t ne2000_reset_ioport_read(void *opaque, uint32_t addr) static void ne2000_save(QEMUFile* f,void* opaque) { - NE2000State* s=(NE2000State*)opaque; + NE2000State* s = opaque; uint32_t tmp; if (s->pci_dev) @@ -681,7 +681,7 @@ static void ne2000_save(QEMUFile* f,void* opaque) static int ne2000_load(QEMUFile* f,void* opaque,int version_id) { - NE2000State* s=(NE2000State*)opaque; + NE2000State* s = opaque; int ret; uint32_t tmp; -- 2.30.2