Skip to content
Snippets Groups Projects
Commit 17837da7 authored by Oliver Heidmann's avatar Oliver Heidmann Committed by Uwe Schulzweida
Browse files

fixed typos

parent a0782cf2
No related branches found
No related tags found
2 merge requests!326convert_to_number not called string_to_number, fixed usage of .fail enabling...,!322Fixing and cleaning up handling of operator argument sourrounding the use of scientific notations
Pipeline #97012 passed
......@@ -203,10 +203,10 @@ _set_magics_parameter_value(const char *, const char *, const char *)
// MAGICS++ STRINGARRAY TYPE PARAMETERS
else if (cdo_cmpstr(param_type, "stringarray"))
{
if (DBG) fprintf(stderr, "Input strarr is %s Sep char is % Search char is %c\n", param_value, sep_char.c_str(), search_char);
if (DBG) fprintf(stderr, "Input strarr is %s Sep char is %s Search char is %c\n", param_value, sep_char.c_str(), search_char);
if (std::strstr(param_value, ";")) sep_char = ';';
if (DBG) fprintf(stderr, "Input strarr is %s Sep char is %s\n", param_value, sep_char.c_str();
if (DBG) fprintf(stderr, "Input strarr is %s Sep char is %s\n", param_value, sep_char.c_str());
const auto splitStrings = split_string(param_value, sep_char);
if (DBG)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment