diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 2013-11-12 06:59:13 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 2013-11-12 06:59:13 +0000 |
commit | 12ff09452604b3f9f8fe57fbcf5408435be4ffcf (patch) | |
tree | 0f755887e2ce6d10a6aa80feb25059fd0e379157 /lib/libc/rpc | |
parent | a91534e73e1b68c0f2cd142d5631e28703f2d134 (diff) |
insert the proper arguments into a prototype
Diffstat (limited to 'lib/libc/rpc')
-rw-r--r-- | lib/libc/rpc/pmap_rmt.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/libc/rpc/pmap_rmt.c b/lib/libc/rpc/pmap_rmt.c index 79409b726b0..4e5a7021563 100644 --- a/lib/libc/rpc/pmap_rmt.c +++ b/lib/libc/rpc/pmap_rmt.c @@ -1,4 +1,4 @@ -/* $OpenBSD: pmap_rmt.c,v 1.29 2010/09/01 14:43:34 millert Exp $ */ +/* $OpenBSD: pmap_rmt.c,v 1.30 2013/11/12 06:59:12 deraadt Exp $ */ /* * Copyright (c) 2010, Oracle America, Inc. @@ -196,7 +196,7 @@ newgetbroadcastnets(struct in_addr **addrsp) return i; } -typedef bool_t (*resultproc_t)(); +typedef bool_t (*resultproc_t)(caddr_t, struct sockaddr_in *); enum clnt_stat clnt_broadcast(u_long prog, /* program number */ |