Skip to content

Commit 2e3bdae

Browse files
restyled-commitsyufengwangca
authored andcommitted
Restyled by whitespace
1 parent 5379adf commit 2e3bdae

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

src/app/clusters/wifi-network-diagnostics-server/wifi-network-diagnostics-server.cpp

+5-5
Original file line numberDiff line numberDiff line change
@@ -66,9 +66,9 @@ class WiFiDiagosticsGlobalInstance : public AttributeAccessInterface, public Com
6666

6767
void InvokeCommand(HandlerContext & ctx) override;
6868

69-
#ifdef WI_FI_NETWORK_DIAGNOSTICS_ENABLE_RESET_COUNTS_CMD
69+
#ifdef WI_FI_NETWORK_DIAGNOSTICS_ENABLE_RESET_COUNTS_CMD
7070
void HandleResetCounts(HandlerContext & ctx, const Commands::ResetCounts::DecodableType & commandData);
71-
#endif
71+
#endif
7272

7373
DiagnosticDataProvider & mDiagnosticProvider;
7474
};
@@ -256,16 +256,16 @@ void WiFiDiagosticsGlobalInstance::InvokeCommand(HandlerContext & handlerContext
256256
{
257257
switch (handlerContext.mRequestPath.mCommandId)
258258
{
259-
#ifdef WI_FI_NETWORK_DIAGNOSTICS_ENABLE_RESET_COUNTS_CMD
259+
#ifdef WI_FI_NETWORK_DIAGNOSTICS_ENABLE_RESET_COUNTS_CMD
260260
case Commands::ResetCounts::Id:
261261
CommandHandlerInterface::HandleCommand<Commands::ResetCounts::DecodableType>(
262262
handlerContext, [this](HandlerContext & ctx, const auto & commandData) { HandleResetCounts(ctx, commandData); });
263263
break;
264-
#endif
264+
#endif
265265
}
266266
}
267267

268-
#ifdef WI_FI_NETWORK_DIAGNOSTICS_ENABLE_RESET_COUNTS_CMD
268+
#ifdef WI_FI_NETWORK_DIAGNOSTICS_ENABLE_RESET_COUNTS_CMD
269269
void WiFiDiagosticsGlobalInstance::HandleResetCounts(HandlerContext & ctx, const Commands::ResetCounts::DecodableType & commandData)
270270
{
271271
mDiagnosticProvider.ResetWiFiNetworkDiagnosticsCounts();

0 commit comments

Comments
 (0)