Skip to content

Commit

Permalink
Restyled by clang-format
Browse files Browse the repository at this point in the history
  • Loading branch information
restyled-commits authored and andreilitvin committed Jun 9, 2023
1 parent ed37d0d commit b57c0c2
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/lib/dnssd/minimal_mdns/Server.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -470,7 +470,8 @@ void ServerBase::OnUdpPacketReceived(chip::Inet::UDPEndPoint * endPoint, chip::S
// Only consider queries that are received on the same interface we are listening on.
// Without this, queries show up on all addresses on all interfaces, resulting
// in more replies than one would expect.
if (endPoint->GetBoundInterface() == info->Interface) {
if (endPoint->GetBoundInterface() == info->Interface)
{
srv->mDelegate->OnQuery(data, info);
}
}
Expand Down

0 comments on commit b57c0c2

Please sign in to comment.