Skip to content

Commit 9b2fc8e

Browse files
committed
Make clippy happy
1 parent b1ca307 commit 9b2fc8e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

clippy_lints/src/fn_null_check.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ fn lint_expr(cx: &LateContext<'_>, expr: &Expr<'_>) {
4040
"function pointer assumed to be nullable, even though it isn't",
4141
None,
4242
"try wrapping your function pointer type in `Option<T>` instead, and using `is_none` to check for null pointer value",
43-
)
43+
);
4444
}
4545

4646
fn is_fn_ptr_cast(cx: &LateContext<'_>, expr: &Expr<'_>) -> bool {

0 commit comments

Comments
 (0)