Skip to content

Commit 2be286f

Browse files
Restyled by clang-format
1 parent fd272ef commit 2be286f

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

examples/tv-app/tv-common/src/AppTv.cpp

+2-1
Original file line numberDiff line numberDiff line change
@@ -633,7 +633,8 @@ bool ContentAppFactoryImpl::UninstallContentApp(uint16_t vendorId, uint16_t prod
633633
return false;
634634
}
635635

636-
std::string createSearchIndex(uint16_t vendorId, uint16_t productId) {
636+
std::string createSearchIndex(uint16_t vendorId, uint16_t productId)
637+
{
637638
// Format the IDs into a string
638639
std::string formattedString = std::to_string(vendorId) + ":" + std::to_string(productId);
639640
return formattedString;

src/controller/CommissionerDiscoveryController.cpp

+1-2
Original file line numberDiff line numberDiff line change
@@ -246,8 +246,7 @@ void CommissionerDiscoveryController::InternalOk()
246246
// notify client the current app's installation status
247247
CommissionerDeclaration cd;
248248
cd.SetErrorCode(appInstallStatus);
249-
mUdcServer->SendCDCMessage(cd,
250-
Transport::PeerAddress::UDP(client->GetPeerAddress().GetIPAddress(), client->GetCdPort()));
249+
mUdcServer->SendCDCMessage(cd, Transport::PeerAddress::UDP(client->GetPeerAddress().GetIPAddress(), client->GetCdPort()));
251250
return;
252251
}
253252

0 commit comments

Comments
 (0)