diff options
| author | Minsoo Choo <minsoochoo0122@proton.me> | 2024-02-04 01:07:18 +0000 |
|---|---|---|
| committer | Mark Johnston <markj@FreeBSD.org> | 2024-02-11 15:15:07 +0000 |
| commit | fd15ba7d72d7fe00905e0dfbe5b091cb970ee906 (patch) | |
| tree | d2b84c0a10367f425d08119c0df15633301c4d97 | |
| parent | 5e21d7cd31194faf8c2bdda2bc60adf34eaa405a (diff) | |
libc: Specify parameter types for function pointer
Reviewed by: dab
MFC after: 1 week
Differential Revision: https://reviews.freebsd.org/D43726
(cherry picked from commit 6bd60e15b1484c6a3f5a87469e42a8e6ad9ab733)
| -rw-r--r-- | lib/libc/yp/yplib.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/libc/yp/yplib.c b/lib/libc/yp/yplib.c index d222200ed728..95ed526b2e75 100644 --- a/lib/libc/yp/yplib.c +++ b/lib/libc/yp/yplib.c @@ -91,7 +91,7 @@ struct dom_binding { bool_t xdr_ypresp_all_seq(XDR *xdrs, u_long *objp); -int (*ypresp_allfn)(); +int (*ypresp_allfn)(unsigned long, char *, int, char *, int, void *); void *ypresp_data; static void _yp_unbind(struct dom_binding *); |
