aboutsummaryrefslogtreecommitdiffstats
path: root/hw/rc4030.c
diff options
context:
space:
mode:
authorBlue Swirl <blauwirbel@gmail.com>2010-04-23 19:22:12 +0000
committerBlue Swirl <blauwirbel@gmail.com>2010-04-23 19:22:12 +0000
commit4aa720f717570c9a4cb26b5f8528461f1be0996b (patch)
treeef1d4569dc60bb354fa33cfe90bc3246ad9e2486 /hw/rc4030.c
parent43d5438997c49896879f5522b0dfa98f0052888d (diff)
Fix harmless if statement with empty body, spotted by clang
This clang error is harmless but worth fixing: CC libhw32/rc4030.o /src/qemu/hw/rc4030.c:244:66: error: if statement has empty body [-Wempty-body] DPRINTF("read 0x%02x at " TARGET_FMT_plx "\n", val, addr); Signed-off-by: Blue Swirl <blauwirbel@gmail.com>
Diffstat (limited to 'hw/rc4030.c')
-rw-r--r--hw/rc4030.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/hw/rc4030.c b/hw/rc4030.c
index c2b2a3eb5..2a8233ab9 100644
--- a/hw/rc4030.c
+++ b/hw/rc4030.c
@@ -240,8 +240,9 @@ static uint32_t rc4030_readl(void *opaque, target_phys_addr_t addr)
break;
}
- if ((addr & ~3) != 0x230)
+ if ((addr & ~3) != 0x230) {
DPRINTF("read 0x%02x at " TARGET_FMT_plx "\n", val, addr);
+ }
return val;
}