From e2be17ec8c033846c60a3c3371e6709f46d8efcb Mon Sep 17 00:00:00 2001 From: ed Date: Thu, 26 Feb 2009 20:59:05 +0000 Subject: Fix LLVM compiler errors related to K&R declarations with ANSI prototypes. Submitted by: Pawel Worach --- usr.sbin/trpt/trpt.c | 13 ++----------- 1 file changed, 2 insertions(+), 11 deletions(-) (limited to 'usr.sbin/trpt') diff --git a/usr.sbin/trpt/trpt.c b/usr.sbin/trpt/trpt.c index 6339776..fbdc4de 100644 --- a/usr.sbin/trpt/trpt.c +++ b/usr.sbin/trpt/trpt.c @@ -301,17 +301,8 @@ done: if (follow) { */ /*ARGSUSED*/ void -tcp_trace(act, ostate, tp, family, ip, th, req) - short act, ostate; - struct tcpcb *tp; -#ifdef INET6 - int family; -#else - int family __unused; -#endif - void *ip; - struct tcphdr *th; - int req; +tcp_trace(short act, short ostate, struct tcpcb *tp, int family __unused, + void *ip, struct tcphdr *th, int req) { tcp_seq seq, ack; int flags, len, win, timer; -- cgit v1.1