summaryrefslogtreecommitdiff
path: root/print-null.c
diff options
context:
space:
mode:
authorFrancois-Xavier Le Bail <devel.fx.lebail@orange.fr>2018-01-26 15:15:58 +0100
committerFrancois-Xavier Le Bail <devel.fx.lebail@orange.fr>2018-01-26 20:59:32 +0100
commit944e93fa4c29c4e5cdecd858ead5a37430a418af (patch)
tree4ed2cef3bbbe24f9844ccb167656cf2ca5158ed5 /print-null.c
parent07cb281e4ed578c1ccf503d5a5d68c0eb4cd1eb1 (diff)
downloadtcpdump-944e93fa4c29c4e5cdecd858ead5a37430a418af.tar.gz
Remove function specifier 'inline' in printers
It was mostly used with large functions. Moreover: Put some function definition names at the beginning of line. Fix a space.
Diffstat (limited to 'print-null.c')
-rw-r--r--print-null.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/print-null.c b/print-null.c
index b859c831..874521e2 100644
--- a/print-null.c
+++ b/print-null.c
@@ -52,7 +52,7 @@
#define SWAPLONG(y) \
((((y)&0xff)<<24) | (((y)&0xff00)<<8) | (((y)&0xff0000)>>8) | (((y)>>24)&0xff))
-static inline void
+static void
null_hdr_print(netdissect_options *ndo, u_int family, u_int length)
{
if (!ndo->ndo_qflag) {