Skip to content

Commit

Permalink
Correcting the code by adding ; for the build to be succeed
Browse files Browse the repository at this point in the history
  • Loading branch information
chirag-silabs committed Aug 19, 2022
1 parent 15d4240 commit e928d21
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/platform/EFR32/DiagnosticDataProviderImpl.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -264,7 +264,7 @@ CHIP_ERROR DiagnosticDataProviderImpl::GetNetworkInterfaces(NetworkInterface **
ifp->name = CharSpan::fromCharString(ifp->Name);
ifp->isOperational = true;
Inet::InterfaceType interfaceType;
CHIP_ERROR err = interfaceIterator.GetInterfaceType(interfaceType)
CHIP_ERROR err = interfaceIterator.GetInterfaceType(interfaceType);
if (err == CHIP_NO_ERROR || err == CHIP_ERROR_NOT_IMPLEMENTED)
{
switch (interfaceType)
Expand Down

0 comments on commit e928d21

Please sign in to comment.