diff options
author | Moritz Jodeit <moritz@cvs.openbsd.org> | 2006-05-29 20:41:42 +0000 |
---|---|---|
committer | Moritz Jodeit <moritz@cvs.openbsd.org> | 2006-05-29 20:41:42 +0000 |
commit | e90902bd5b82029c799a60faa9817d359a2b08fd (patch) | |
tree | c17ba6bbb1ba27e87398f259f4f8341fe1ea11db /usr.sbin/tcpdump | |
parent | ed0650b04c5611372f0ae6419c752e32fef4f52d (diff) |
No need for return; at end of functions returning void.
Diffstat (limited to 'usr.sbin/tcpdump')
-rw-r--r-- | usr.sbin/tcpdump/print-ip.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/usr.sbin/tcpdump/print-ip.c b/usr.sbin/tcpdump/print-ip.c index 7a8e65df27f..f0d9d4f40c4 100644 --- a/usr.sbin/tcpdump/print-ip.c +++ b/usr.sbin/tcpdump/print-ip.c @@ -1,4 +1,4 @@ -/* $OpenBSD: print-ip.c,v 1.30 2006/05/29 20:30:11 moritz Exp $ */ +/* $OpenBSD: print-ip.c,v 1.31 2006/05/29 20:41:41 moritz Exp $ */ /* * Copyright (c) 1988, 1989, 1990, 1991, 1992, 1993, 1994, 1995, 1996, 1997 @@ -23,7 +23,7 @@ #ifndef lint static const char rcsid[] = - "@(#) $Header: /cvs/OpenBSD/src/usr.sbin/tcpdump/print-ip.c,v 1.30 2006/05/29 20:30:11 moritz Exp $ (LBL)"; + "@(#) $Header: /cvs/OpenBSD/src/usr.sbin/tcpdump/print-ip.c,v 1.31 2006/05/29 20:41:41 moritz Exp $ (LBL)"; #endif #include <sys/param.h> @@ -663,5 +663,4 @@ ip_print(register const u_char *bp, register u_int length) trunc: printf("[|ip]"); - return; } |