Browse Source

fix Perl tests config loading

PavelMikus 2 years ago
parent
commit
1bbeedbfb8
1 changed files with 1 additions and 1 deletions
  1. 1 1
      xs/xsp/Config.xsp

+ 1 - 1
xs/xsp/Config.xsp

@@ -144,7 +144,7 @@ print_config_def()
             ConfigOptionDef* optdef     = &oit->second;
             
             const char* opt_type;
-            if (optdef->type == coFloat || optdef->type == coFloats || optdef->type == coFloatOrPercent) {
+            if (optdef->type == coFloat || optdef->type == coFloats || optdef->type == coFloatOrPercent ||  optdef->type == coFloatsOrPercents) {
                 opt_type = "f";
             } else if (optdef->type == coPercent || optdef->type == coPercents) {
                 opt_type = "percent";