Skip to content

Commit 45ffefc

Browse files
committed
Restyled
1 parent bcab9be commit 45ffefc

File tree

1 file changed

+6
-3
lines changed

1 file changed

+6
-3
lines changed

src/platform/ESP32/ConnectivityManagerImpl.cpp

+6-3
Original file line numberDiff line numberDiff line change
@@ -88,13 +88,16 @@ CHIP_ERROR ConnectivityManagerImpl::_Init()
8888
#endif
8989

9090
#if defined(CONFIG_WIFI_NETWORK_ENDPOINT_ID) && defined(CONFIG_THREAD_NETWORK_ENDPOINT_ID)
91-
static_assert(CONFIG_WIFI_NETWORK_ENDPOINT_ID != CONFIG_THREAD_NETWORK_ENDPOINT_ID, "Wi-Fi network endpoint id and Thread network endpoint id should not be the same.");
91+
static_assert(CONFIG_WIFI_NETWORK_ENDPOINT_ID != CONFIG_THREAD_NETWORK_ENDPOINT_ID,
92+
"Wi-Fi network endpoint id and Thread network endpoint id should not be the same.");
9293
#endif
9394
#if defined(CONFIG_WIFI_NETWORK_ENDPOINT_ID) && defined(CONFIG_ETHERNET_NETWORK_ENDPOINT_ID)
94-
static_assert(CONFIG_WIFI_NETWORK_ENDPOINT_ID != CONFIG_ETHERNET_NETWORK_ENDPOINT_ID, "Wi-Fi network endpoint id and Ethernet network endpoint id should not be the same.");
95+
static_assert(CONFIG_WIFI_NETWORK_ENDPOINT_ID != CONFIG_ETHERNET_NETWORK_ENDPOINT_ID,
96+
"Wi-Fi network endpoint id and Ethernet network endpoint id should not be the same.");
9597
#endif
9698
#if defined(CONFIG_THREAD_NETWORK_ENDPOINT_ID) && defined(CONFIG_ETHERNET_NETWORK_ENDPOINT_ID)
97-
static_assert(CONFIG_THREAD_NETWORK_ENDPOINT_ID != CONFIG_ETHERNET_NETWORK_ENDPOINT_ID, "Thread network endpoint id and Ethernet network endpoint id should not be the same.");
99+
static_assert(CONFIG_THREAD_NETWORK_ENDPOINT_ID != CONFIG_ETHERNET_NETWORK_ENDPOINT_ID,
100+
"Thread network endpoint id and Ethernet network endpoint id should not be the same.");
98101
#endif
99102

100103
return CHIP_NO_ERROR;

0 commit comments

Comments
 (0)