Skip to content

Commit

Permalink
Fix a typo in src/app/server/Server.cpp that prevents the echo handle…
Browse files Browse the repository at this point in the history
…r server to starts (#16878)
  • Loading branch information
vivien-apple authored Apr 1, 2022
1 parent d170a25 commit b58b7be
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/app/server/Server.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -205,7 +205,7 @@ CHIP_ERROR Server::Init(AppDelegate * delegate, uint16_t secureServicePort, uint
#endif // CHIP_CONFIG_ENABLE_SERVER_IM_EVENT

#if defined(CHIP_APP_USE_ECHO)
err = InitEchoHandler(&gExchangeMgr);
err = InitEchoHandler(&mExchangeMgr);
SuccessOrExit(err);
#endif

Expand Down

0 comments on commit b58b7be

Please sign in to comment.