diff options
Diffstat (limited to 'option.cc')
-rw-r--r-- | option.cc | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -39,8 +39,8 @@ namespace { op_bool_tuple find_option(scope_t& scope, const string& name) { char buf[128]; - std::strcpy(buf, "option_"); - char * p = &buf[7]; + std::strcpy(buf, "opt_"); + char * p = &buf[4]; foreach (char ch, name) { if (ch == '-') *p++ = '_'; |