File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff 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 }
You can’t perform that action at this time.
0 commit comments