summaryrefslogtreecommitdiffstatshomepage
path: root/src/lib/util/options.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib/util/options.c')
-rw-r--r--src/lib/util/options.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/util/options.c b/src/lib/util/options.c
index d1d69db2e82..f5beddf1d71 100644
--- a/src/lib/util/options.c
+++ b/src/lib/util/options.c
@@ -687,7 +687,7 @@ void core_options::append_entry(core_options::entry &newentry)
// for boolean options add a "no" variant as well
if (newentry.type() == OPTION_BOOLEAN)
- m_entrymap.add(astring("no", newentry.name(name)).c_str(), &newentry);
+ m_entrymap.add(astring("no").cat(newentry.name(name)).c_str(), &newentry);
}
}