Skip to content

Commit

Permalink
Fix an incorrect error message in [clear_global_variable]
Browse files Browse the repository at this point in the history
(cherry-picked from commit 6184489)
  • Loading branch information
CelticMinstrel committed Oct 7, 2018
1 parent b1e96b0 commit 755816c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/persist_var.cpp
Expand Up @@ -200,7 +200,7 @@ void verify_and_clear_global_variable(const vconfig &pcfg)
{
bool valid = true;
if (!pcfg.has_attribute("global")) {
ERR_PERSIST << "[clear_global_variable] missing required attribute \"from_global\"";
ERR_PERSIST << "[clear_global_variable] missing required attribute \"global\"";
valid = false;
}
if (!pcfg.has_attribute("namespace")) {
Expand Down

0 comments on commit 755816c

Please sign in to comment.