Skip to content

Commit f60fe95

Browse files
committed
u
1 parent b426156 commit f60fe95

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/flow.c

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2650,23 +2650,23 @@ static void flow_assignment_core(
26502650
ctx->ctx,
26512651
NULL,
26522652
p_b_marker,
2653-
"passing a possible null pointer '%s' to non-nullable pointer parameter", buffer);
2653+
"passing a possibly null pointer '%s' to non-nullable pointer parameter", buffer);
26542654
}
26552655
else if (assigment_type == ASSIGMENT_TYPE_RETURN)
26562656
{
26572657
compiler_diagnostic(W_FLOW_NULLABLE_TO_NON_NULLABLE,
26582658
ctx->ctx,
26592659
NULL,
26602660
p_b_marker,
2661-
"returning a possible null pointer '%s' to non-nullable pointer", buffer);
2661+
"returning a possibly null pointer '%s' to a non-nullable pointer", buffer);
26622662
}
26632663
else
26642664
{
26652665
compiler_diagnostic(W_FLOW_NULLABLE_TO_NON_NULLABLE,
26662666
ctx->ctx,
26672667
NULL,
26682668
p_b_marker,
2669-
"assignment of possible null pointer '%s' to non-nullable pointer", buffer);
2669+
"assigning a possibly null '%s' to a non-nullable pointer", buffer);
26702670
}
26712671
}
26722672
}

0 commit comments

Comments
 (0)