Skip to content

Commit

Permalink
Add missing semicolon
Browse files Browse the repository at this point in the history
  • Loading branch information
hhvrc committed Nov 21, 2024
1 parent f90e50b commit 1926617
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/serial/SerialInputHandler.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -530,7 +530,7 @@ static void serialProcessLine(std::string_view line)

auto commandEntryName = commandEntry->name();
if (!commandEntryName.empty()) {
arguments = OpenShock::StringTrim(arguments.substr(commandEntryName.size()))
arguments = OpenShock::StringTrim(arguments.substr(commandEntryName.size()));
}

commandEntry->commandHandler()(arguments, isAutomated);
Expand Down

0 comments on commit 1926617

Please sign in to comment.