summaryrefslogtreecommitdiff
path: root/hw
diff options
context:
space:
mode:
authorBlue Swirl <blauwirbel@gmail.com>2010-04-25 20:33:43 +0000
committerBlue Swirl <blauwirbel@gmail.com>2010-04-25 20:33:43 +0000
commit9fad3eb7fa27616846b1ef477947771337bbe0fd (patch)
tree5dcd87188e3cf5df395175ffad85844b784eee05 /hw
parent05f92404cd8e0fa3204182350d19c74451f9c4b7 (diff)
downloadqemu-9fad3eb7fa27616846b1ef477947771337bbe0fd.tar.gz
ppc: add missing 'break', spotted by clang analyzer
Signed-off-by: Blue Swirl <blauwirbel@gmail.com>
Diffstat (limited to 'hw')
-rw-r--r--hw/ppc405_uc.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/hw/ppc405_uc.c b/hw/ppc405_uc.c
index df698a88ea..d9bbd93789 100644
--- a/hw/ppc405_uc.c
+++ b/hw/ppc405_uc.c
@@ -486,6 +486,7 @@ static uint32_t dcr_read_ebc (void *opaque, int dcrn)
ret = 0x00000000;
break;
}
+ break;
default:
ret = 0x00000000;
break;