summaryrefslogtreecommitdiffstats
path: root/src/config.l
diff options
context:
space:
mode:
authorDimitri van Heesch <dimitri@stack.nl>2015-08-29 21:20:40 (GMT)
committerDimitri van Heesch <dimitri@stack.nl>2015-08-29 21:20:40 (GMT)
commitcd1b77f66a20a607007520b9728eb54571512ecb (patch)
tree146504887ad92c5e6c6f095041d0ab2a573afbe4 /src/config.l
parentce9d32bd320ba3f038c1bcd6a357bbc3a555c0e4 (diff)
parent9947c11284542a74c56e52b55be032350c6bbc3e (diff)
downloadDoxygen-cd1b77f66a20a607007520b9728eb54571512ecb.zip
Doxygen-cd1b77f66a20a607007520b9728eb54571512ecb.tar.gz
Doxygen-cd1b77f66a20a607007520b9728eb54571512ecb.tar.bz2
Merge pull request #382 from albert-github/feature/bug_config_typo
Correcting print format error in config.l
Diffstat (limited to 'src/config.l')
-rw-r--r--src/config.l4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/config.l b/src/config.l
index 5949b46..bda3c6a 100644
--- a/src/config.l
+++ b/src/config.l
@@ -242,7 +242,7 @@ QStrList &Config::getList(const char *fileName,int num,const char *name) const
}
else if (opt->kind()!=ConfigOption::O_List)
{
- config_err("%d<%d>: Internal error: Requested option %s not of list type!\n",fileName,num,name);
+ config_err("%s<%d>: Internal error: Requested option %s not of list type!\n",fileName,num,name);
exit(1);
}
return *((ConfigList *)opt)->valueRef();
@@ -1077,7 +1077,7 @@ void Config::checkFileName(const char *optionName)
(val=="no" || val=="false" || val=="0" || val=="none"))
{
config_err("file name expected for option %s, got %s instead. Ignoring...\n",optionName,s.data());
- s=""; // note tihe use of &s above: this will change the option value!
+ s=""; // note the use of &s above: this will change the option value!
}
}