diff options
Diffstat (limited to 'src/filesystem')
-rw-r--r-- | src/filesystem/inifile.cc | 2 | ||||
-rw-r--r-- | src/filesystem/inifile.h | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/filesystem/inifile.cc b/src/filesystem/inifile.cc index e82de41..5f87591 100644 --- a/src/filesystem/inifile.cc +++ b/src/filesystem/inifile.cc @@ -298,7 +298,7 @@ void IniFile::unknown_value() const con_warn << name() << " unknown value '" << value() << "' for key '" << key() << "' at line " << line() << std::endl; } -void IniFile::unkown_key() const +void IniFile::unknown_key() const { con_warn << name() << " unknown key '" << key() << "' at line " << line() << std::endl; } diff --git a/src/filesystem/inifile.h b/src/filesystem/inifile.h index 4b94dcd..660a981 100644 --- a/src/filesystem/inifile.h +++ b/src/filesystem/inifile.h @@ -96,7 +96,7 @@ public: void unknown_value() const; /// print a default unkown key error - void unkown_key() const; + void unknown_key() const; /// print a default unkown section error void unknown_section() const; |