From: Matthias Schiffer Date: Tue, 28 Sep 2010 13:25:20 +0000 (+0200) Subject: timer: Add missing break in switch X-Git-Tag: v11~9 X-Git-Url: https://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?p=elogind.git;a=commitdiff_plain;h=0b021426fbbe0ff835826c65052a1d7daf409aef;hp=1ddff895f3ad85ec79c4923ba8c882a283826f42;ds=inline timer: Add missing break in switch --- diff --git a/src/timer.c b/src/timer.c index ff94b8c86..0dcaad509 100644 --- a/src/timer.c +++ b/src/timer.c @@ -430,7 +430,7 @@ void timer_unit_notify(Unit *u, UnitActiveState new_state) { case TIMER_DEAD: case TIMER_FAILED: - ; + break; default: assert_not_reached("Unknown timer state");