diff options
author | Francois-Xavier Le Bail <devel.fx.lebail@orange.fr> | 2018-01-26 15:15:58 +0100 |
---|---|---|
committer | Francois-Xavier Le Bail <devel.fx.lebail@orange.fr> | 2018-01-26 20:59:32 +0100 |
commit | 944e93fa4c29c4e5cdecd858ead5a37430a418af (patch) | |
tree | 4ed2cef3bbbe24f9844ccb167656cf2ca5158ed5 /print-ipfc.c | |
parent | 07cb281e4ed578c1ccf503d5a5d68c0eb4cd1eb1 (diff) | |
download | tcpdump-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-ipfc.c')
-rw-r--r-- | print-ipfc.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/print-ipfc.c b/print-ipfc.c index 8205c978..6c751380 100644 --- a/print-ipfc.c +++ b/print-ipfc.c @@ -42,7 +42,7 @@ struct ipfc_header { #define IPFC_HDRLEN 16 /* Extract src, dst addresses */ -static inline void +static void extract_ipfc_addrs(const struct ipfc_header *ipfcp, char *ipfcsrc, char *ipfcdst) { @@ -57,7 +57,7 @@ extract_ipfc_addrs(const struct ipfc_header *ipfcp, char *ipfcsrc, /* * Print the Network_Header */ -static inline void +static void ipfc_hdr_print(netdissect_options *ndo, const struct ipfc_header *ipfcp _U_, u_int length, const u_char *ipfcsrc, |