Skip to content

Commit

Permalink
Merge commit '9b4d06cbe6af3a85de26201cceb2f59ee4aeed73'
Browse files Browse the repository at this point in the history
  • Loading branch information
Darth Vader committed Dec 6, 2024
2 parents 3873951 + 9b4d06c commit 6dd6a8f
Showing 1 changed file with 9 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2312,6 +2312,15 @@ tidy_species(void)
}
/* store sequence number in master structure */
master[i]->number = i;
if (master[i]->s == NULL)
{
input_error++;
error_string = sformatf(
"Species pointer is null for, %s. Check your _MASTER_ and _SPECIES definitions.",
master[i]->elt->name);
error_msg(error_string, STOP);
}

if (strcmp(master[i]->elt->name, "Alkalinity") != 0)
{
if (master[i]->primary == TRUE)
Expand Down

0 comments on commit 6dd6a8f

Please sign in to comment.