Fix overeager find/replace
This commit is contained in:
parent
a31e44b0ef
commit
6034c9f9a5
1 changed files with 1 additions and 1 deletions
|
|
@ -231,7 +231,7 @@ void cliThreadProc()
|
||||||
std::string args = command.substr(pos + 1);
|
std::string args = command.substr(pos + 1);
|
||||||
std::vector<std::string> tokens = stringTokenize(args);
|
std::vector<std::string> tokens = stringTokenize(args);
|
||||||
|
|
||||||
if (kw == "loadInstrument") {
|
if (kw == "load_instrument") {
|
||||||
try {
|
try {
|
||||||
std::lock_guard<SpinMutex> lock { processMutex };
|
std::lock_guard<SpinMutex> lock { processMutex };
|
||||||
loadInstrument(tokens[0].c_str());
|
loadInstrument(tokens[0].c_str());
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue