fix(config): Error message

This commit is contained in:
Michael Carlberg 2017-01-26 21:34:38 +01:00
parent 087ea4e087
commit 73aa721f90
1 changed files with 1 additions and 1 deletions

View File

@ -295,7 +295,7 @@ class config {
T dereference_xrdb(string var) const {
size_t pos;
#if not WITH_XRM
m_log.warn("No built-in support for xrdb (requires xcb-util-xrm). Using default value for `%s`", var);
m_log.warn("No built-in support to dereference ${xrdb:%s} references (requires `xcb-util-xrm`)", var);
if ((pos = var.find(':')) != string::npos) {
return convert<T>(var.substr(pos + 1));
}