From 1bbeedbfb8023531503b93014e3b4da67a38cd05 Mon Sep 17 00:00:00 2001 From: PavelMikus Date: Wed, 14 Dec 2022 19:33:07 +0100 Subject: [PATCH] fix Perl tests config loading --- xs/xsp/Config.xsp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/xs/xsp/Config.xsp b/xs/xsp/Config.xsp index 14f235d93..ac964645d 100644 --- a/xs/xsp/Config.xsp +++ b/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";