Skip to content

Commit

Permalink
Fix compilation error issue #76
Browse files Browse the repository at this point in the history
  • Loading branch information
mobizt committed May 22, 2024
1 parent 628ed73 commit 7d41bc7
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/core/AsyncClient/AsyncClient.h
Original file line number Diff line number Diff line change
Expand Up @@ -1643,9 +1643,9 @@ class AsyncClientClass : public ResultBase, RTDBResultBase

if (ret)
{
String debug = FPSTR("Connected, IP: ");
debug += FIREBASE_ETHERNET_MODULE_CLASS_IMPL.localIP().toString();
setDebugBase(app_debug, debug);
String msg = FPSTR("Connected, IP: ");
msg += FIREBASE_ETHERNET_MODULE_CLASS_IMPL.localIP().toString();
setDebugBase(app_debug, msg);
}
else
{
Expand Down

0 comments on commit 7d41bc7

Please sign in to comment.