Skip to content

Commit

Permalink
fix BP5 parameter parsing for size values with units (#4012)
Browse files Browse the repository at this point in the history
  • Loading branch information
pnorbert committed Jan 24, 2024
1 parent c7bd581 commit 9064b09
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion source/adios2/engine/bp5/BP5Engine.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -184,7 +184,7 @@ void BP5Engine::ParseParams(IO &io, struct BP5Params &Params)
parameter = def;
if (itKey != params_lowercase.end())
{
std::string value = itKey->second;
std::string value = helper::LowerCase(itKey->second);
parameter =
helper::StringToByteUnits(value, "for Parameter key=" + key + "in call to Open");
}
Expand Down

0 comments on commit 9064b09

Please sign in to comment.