mirror of
https://github.com/qemu/qemu.git
synced 2024-11-25 11:53:39 +08:00
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>
This commit is contained in:
parent
43d5438997
commit
4aa720f717
@ -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;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user