Skip to content

Commit

Permalink
fixed linter issues
Browse files Browse the repository at this point in the history
  • Loading branch information
ErikReider committed Nov 4, 2023
1 parent 2c7bc93 commit 3943c01
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/util/pipewire_backend.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ static void registry_event_global_remove(void *_data, uint32_t id) {

backend->mutex_.lock();
auto iter = backend->privacy_nodes.find(id);
if(iter != backend->privacy_nodes.end()) {
if (iter != backend->privacy_nodes.end()) {
backend->privacy_nodes.erase(id);
}
backend->mutex_.unlock();
Expand Down

0 comments on commit 3943c01

Please sign in to comment.