git: c040011f072d - main - ifdi: fix signature mismatch for null_priv_ioctl
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Tue, 25 Feb 2025 14:58:50 UTC
The branch main has been updated by jhb:
URL: https://cgit.FreeBSD.org/src/commit/?id=c040011f072d192ef73439087ea986e498975234
commit c040011f072d192ef73439087ea986e498975234
Author: SHENGYI HONG <aokblast@FreeBSD.org>
AuthorDate: 2025-02-23 17:10:43 +0000
Commit: John Baldwin <jhb@FreeBSD.org>
CommitDate: 2025-02-25 14:21:51 +0000
ifdi: fix signature mismatch for null_priv_ioctl
Reviewed by: jhb
Differential Revision: https://reviews.freebsd.org/D49110
---
sys/net/ifdi_if.m | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/sys/net/ifdi_if.m b/sys/net/ifdi_if.m
index d52bf66bd110..f4a3db5092ab 100644
--- a/sys/net/ifdi_if.m
+++ b/sys/net/ifdi_if.m
@@ -107,7 +107,7 @@ CODE {
}
static int
- null_priv_ioctl(if_ctx_t _ctx __unused, u_long command, caddr_t *data __unused)
+ null_priv_ioctl(if_ctx_t _ctx __unused, u_long command, caddr_t data __unused)
{
return (ENOTSUP);
}