Skip to content

Commit 15852df

Browse files
authored
Merge pull request #5758 from victormlg/abortbundleclass
CFE-4075: Changed error message in checkclassexpression when no matches
2 parents d8ebd27 + 0bb6b68 commit 15852df

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

libpromises/eval_context.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -604,7 +604,7 @@ ExpressionValue CheckClassExpression(const EvalContext *ctx, const char *context
604604

605605
if (!res.result)
606606
{
607-
Log(LOG_LEVEL_ERR, "Unable to parse class expression '%s'", context);
607+
Log(LOG_LEVEL_ERR, "Couldn't find any class matching '%s'", context);
608608
return EXPRESSION_VALUE_ERROR;
609609
}
610610
else

0 commit comments

Comments
 (0)