diff options
author | Blue Swirl <blauwirbel@gmail.com> | 2010-04-25 20:33:43 +0000 |
---|---|---|
committer | Blue Swirl <blauwirbel@gmail.com> | 2010-04-25 20:33:43 +0000 |
commit | 9fad3eb7fa27616846b1ef477947771337bbe0fd (patch) | |
tree | 5dcd87188e3cf5df395175ffad85844b784eee05 /hw/ppc405_uc.c | |
parent | 05f92404cd8e0fa3204182350d19c74451f9c4b7 (diff) |
ppc: add missing 'break', spotted by clang analyzer
Signed-off-by: Blue Swirl <blauwirbel@gmail.com>
Diffstat (limited to 'hw/ppc405_uc.c')
-rw-r--r-- | hw/ppc405_uc.c | 1 |
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; |