Skip to content

Commit

Permalink
unintended semicolon in if statement (#1217)
Browse files Browse the repository at this point in the history
  • Loading branch information
rex-schilasky authored Oct 16, 2023
1 parent 5ca0c8a commit b0b7655
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ecal/core/src/service/ecal_service_client_impl.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -562,7 +562,7 @@ namespace eCAL
}
};

if (client->second->async_call_service(request_shared_ptr, response_callback));
if (client->second->async_call_service(request_shared_ptr, response_callback))
at_least_one_service_was_called = true;
}
}
Expand Down

0 comments on commit b0b7655

Please sign in to comment.