Fix overeager find/replace

This commit is contained in:
Paul Fd 2021-09-21 11:30:23 +02:00
parent a31e44b0ef
commit 6034c9f9a5

View file

@ -231,7 +231,7 @@ void cliThreadProc()
std::string args = command.substr(pos + 1);
std::vector<std::string> tokens = stringTokenize(args);
if (kw == "loadInstrument") {
if (kw == "load_instrument") {
try {
std::lock_guard<SpinMutex> lock { processMutex };
loadInstrument(tokens[0].c_str());