Skip to content

Commit 6a52b58

Browse files
authored
Merge pull request #5862 from larsewi/container-type
Fixed assertion error in classfilterdata()
2 parents 9f3af7e + c18cebe commit 6a52b58

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

libpromises/evalfunction.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8068,8 +8068,8 @@ static FnCallResult FnCallClassFilterData(
80688068
if (parent == NULL)
80698069
{
80708070
Log(LOG_LEVEL_VERBOSE,
8071-
"Function %s(): Expected parent element to be of container type array, found %s",
8072-
fp->name, JsonGetTypeAsString(parent));
8071+
"Function %s(): Expected parent element to be of type data container",
8072+
fp->name);
80738073
return FnFailure();
80748074
}
80758075

0 commit comments

Comments
 (0)