diff options
author | Blue Swirl | 2009-09-21 20:11:34 +0200 |
---|---|---|
committer | Blue Swirl | 2009-09-21 20:11:34 +0200 |
commit | b9d38e9510b38a8c101fa50cbd6f75d9eff61261 (patch) | |
tree | c267953d3408328a7d262b95a9fb95641e285525 /hw/pxa2xx_lcd.c | |
parent | Fix user targets broken by 96e132e24ee5a693069e83b6a981693588b088c1 (diff) | |
download | qemu-b9d38e9510b38a8c101fa50cbd6f75d9eff61261.tar.gz qemu-b9d38e9510b38a8c101fa50cbd6f75d9eff61261.tar.xz qemu-b9d38e9510b38a8c101fa50cbd6f75d9eff61261.zip |
Fix Sparse warnings about using plain integer as NULL pointer
Signed-off-by: Blue Swirl <blauwirbel@gmail.com>
Diffstat (limited to 'hw/pxa2xx_lcd.c')
-rw-r--r-- | hw/pxa2xx_lcd.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/hw/pxa2xx_lcd.c b/hw/pxa2xx_lcd.c index 0bf03de246..930299abd3 100644 --- a/hw/pxa2xx_lcd.c +++ b/hw/pxa2xx_lcd.c @@ -667,7 +667,7 @@ static void pxa2xx_lcdc_dma0_redraw_horiz(PXA2xxLCDState *s, target_phys_addr_t addr, int *miny, int *maxy) { int src_width, dest_width; - drawfn fn = 0; + drawfn fn = NULL; if (s->dest_width) fn = s->line_fn[s->transp][s->bpp]; if (!fn) @@ -694,7 +694,7 @@ static void pxa2xx_lcdc_dma0_redraw_vert(PXA2xxLCDState *s, target_phys_addr_t addr, int *miny, int *maxy) { int src_width, dest_width; - drawfn fn = 0; + drawfn fn = NULL; if (s->dest_width) fn = s->line_fn[s->transp][s->bpp]; if (!fn) |