stream-endpoint: add break to avoid implicit fallthrough

No functional change

stream-endpoint.c:172:3: warning: unannotated fall-through between switch labels [-Wimplicit-fallthrough]
This commit is contained in:
Peter Hutterer 2022-01-28 13:01:41 +10:00
parent 28d3c8f425
commit f715063213

View file

@ -169,6 +169,7 @@ static int stream_set_active(struct stream *stream, bool active)
default:
break;
}
break;
default:
break;
}