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 arkq committed Feb 15, 2024
1 parent cdb91d0 commit 5d3d67c
Showing 1 changed file with 2 additions and 8 deletions.
10 changes: 2 additions & 8 deletions src/platform/Linux/ConnectivityManagerImpl.h
Original file line number Diff line number Diff line change
Expand Up @@ -159,16 +159,10 @@ class ConnectivityManagerImpl final : public ConnectivityManager,
#endif

public:
const char * GetEthernetIfName()
{
return (mEthIfName[0] == '\0') ? nullptr : mEthIfName;
}
const char * GetEthernetIfName() { return (mEthIfName[0] == '\0') ? nullptr : mEthIfName; }

#if CHIP_DEVICE_CONFIG_ENABLE_WIFI
const char * GetWiFiIfName()
{
return (sWiFiIfName[0] == '\0') ? nullptr : sWiFiIfName;
}
const char * GetWiFiIfName() { return (sWiFiIfName[0] == '\0') ? nullptr : sWiFiIfName; }
#endif

private:
Expand Down

0 comments on commit 5d3d67c

Please sign in to comment.