Skip to content

Commit c7fac44

Browse files
committed
[occ] Fix broken build
1 parent 07a0bfc commit c7fac44

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

occ/plugin/OccPluginServer.cxx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ OccPluginServer::EventStream(grpc::ServerContext* context,
6363
auto onDeviceStateChange = [&](fair::mq::PluginServices::DeviceState reachedState) {
6464
std::lock_guard<std::mutex> lock(writer_mu);
6565
auto state = fair::mq::PluginServices::ToStr(reachedState);
66-
last_known_state = state
66+
last_known_state = state;
6767

6868
OLOG(debug) << "[EventStream] new state: " << state;
6969

@@ -115,7 +115,7 @@ OccPluginServer::StateStream(grpc::ServerContext* context,
115115
auto onDeviceStateChange = [&](fair::mq::PluginServices::DeviceState reachedState) {
116116
std::lock_guard<std::mutex> lock(writer_mu);
117117
auto state = fair::mq::PluginServices::ToStr(reachedState);
118-
last_known_state = state
118+
last_known_state = state;
119119
pb::StateType sType = isIntermediateFMQState(state) ? pb::STATE_INTERMEDIATE : pb::STATE_STABLE;
120120

121121
pb::StateStreamReply response;

0 commit comments

Comments
 (0)