summaryrefslogtreecommitdiffstats
path: root/hw/pxa2xx_pcmcia.c
diff options
context:
space:
mode:
authorBlue Swirl <blauwirbel@gmail.com>2009-09-21 18:11:34 +0000
committerBlue Swirl <blauwirbel@gmail.com>2009-09-21 18:11:34 +0000
commitb9d38e9510b38a8c101fa50cbd6f75d9eff61261 (patch)
treec267953d3408328a7d262b95a9fb95641e285525 /hw/pxa2xx_pcmcia.c
parent52d946208e9cc2e958b4d3ad18914a51bdbe197a (diff)
downloadhqemu-b9d38e9510b38a8c101fa50cbd6f75d9eff61261.zip
hqemu-b9d38e9510b38a8c101fa50cbd6f75d9eff61261.tar.gz
Fix Sparse warnings about using plain integer as NULL pointer
Signed-off-by: Blue Swirl <blauwirbel@gmail.com>
Diffstat (limited to 'hw/pxa2xx_pcmcia.c')
-rw-r--r--hw/pxa2xx_pcmcia.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/hw/pxa2xx_pcmcia.c b/hw/pxa2xx_pcmcia.c
index 5b42147..be1309f 100644
--- a/hw/pxa2xx_pcmcia.c
+++ b/hw/pxa2xx_pcmcia.c
@@ -193,8 +193,8 @@ int pxa2xx_pcmcia_dettach(void *opaque)
return -ENOENT;
s->card->detach(s->card->state);
- s->card->slot = 0;
- s->card = 0;
+ s->card->slot = NULL;
+ s->card = NULL;
s->slot.attached = 0;
OpenPOWER on IntegriCloud