From d69d26429f33b7ae15b786fcc73e644bbb153a60 Mon Sep 17 00:00:00 2001 From: Uwe Hermann Date: Mon, 4 Nov 2013 00:18:47 +0100 Subject: [PATCH] output/analog: SR_UNIT_REVOLUTIONS_PER_MINUTE: Add missing break. --- output/analog.c | 1 + 1 file changed, 1 insertion(+) diff --git a/output/analog.c b/output/analog.c index 50189b41..06da3a87 100644 --- a/output/analog.c +++ b/output/analog.c @@ -175,6 +175,7 @@ static void fancyprint(int unit, int mqflags, float value, GString *out) break; case SR_UNIT_REVOLUTIONS_PER_MINUTE: si_printf(value, out, "RPM"); + break; case SR_UNIT_VOLT_AMPERE: si_printf(value, out, "VA"); break;