Skip to content

Commit

Permalink
terminal: semicolon with serial and telnet
Browse files Browse the repository at this point in the history
  • Loading branch information
mcspr committed Jan 29, 2025
1 parent 776acaa commit 27cf0af
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion code/espurna/telnet.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -531,7 +531,7 @@ class Client {
_cmds.pop_front();

ExhaustingPrint<Client> print(this);
if (!espurna::terminal::find_and_call(cmd, print)) {
if (!espurna::terminal::api_find_and_call(cmd, print)) {
_cmds.clear();
break;
}
Expand Down
2 changes: 1 addition & 1 deletion code/espurna/terminal.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -478,7 +478,7 @@ void processing_loop() {
break;
}

find_and_call(result.value, port);
api_find_and_call(result.value, port);
}
}

Expand Down

0 comments on commit 27cf0af

Please sign in to comment.