From: Stefan Weil Date: Tue, 23 Jul 2013 04:46:49 +0000 (+0200) Subject: watchdog: Remove break after exit X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=f6019e5fada012f7f396c89968f2c242f92f40df;p=qemu.git watchdog: Remove break after exit This was dead code. Signed-off-by: Stefan Weil Reviewed-by: Andreas Färber Signed-off-by: Michael Tokarev --- diff --git a/hw/watchdog/watchdog.c b/hw/watchdog/watchdog.c index cb4e1f9e47..387962ec4a 100644 --- a/hw/watchdog/watchdog.c +++ b/hw/watchdog/watchdog.c @@ -128,7 +128,6 @@ void watchdog_perform_action(void) case WDT_POWEROFF: /* same as 'quit' command in monitor */ watchdog_mon_event("poweroff"); exit(0); - break; case WDT_PAUSE: /* same as 'stop' command in monitor */ watchdog_mon_event("pause");