Fix word "unknown"

This commit is contained in:
Joao Eriberto Mota Filho
2021-09-12 17:26:02 -03:00
committed by WarmUpTill
parent 66f3c74cf3
commit 3c8f5088d3
2 changed files with 5 additions and 5 deletions

View File

@@ -79,7 +79,7 @@ bool Macro::CeckMatch()
break;
default:
blog(LOG_WARNING,
"ignoring unkown condition check for '%s'",
"ignoring unknown condition check for '%s'",
_name.c_str());
break;
}
@@ -249,7 +249,7 @@ bool Macro::Load(obs_data_t *obj)
setValidLogic(c, root, _name);
} else {
blog(LOG_WARNING,
"discarding condition entry with unkown id (%s) for macro %s",
"discarding condition entry with unknown id (%s) for macro %s",
id.c_str(), _name.c_str());
}
@@ -273,7 +273,7 @@ bool Macro::Load(obs_data_t *obj)
_actions.back()->Load(array_obj);
} else {
blog(LOG_WARNING,
"discarding action entry with unkown id (%s) for macro %s",
"discarding action entry with unknown id (%s) for macro %s",
id.c_str(), _name.c_str());
}

View File

@@ -149,7 +149,7 @@ void SceneTrigger::logMatch()
actionName = "STOP VIRTUAL CAMERA";
break;
default:
actionName = "UNKOWN";
actionName = "UNKNOWN";
break;
}
@@ -273,7 +273,7 @@ void SceneTrigger::performAction()
bool stop = triggerAction == sceneTriggerAction::STOP_SWITCHER;
t = std::thread(statusThread, duration, stop);
} else {
blog(LOG_WARNING, "ignoring unkown action '%d'",
blog(LOG_WARNING, "ignoring unknown action '%d'",
static_cast<int>(triggerAction));
}