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-ap1394.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-ap1394.c')
-rw-r--r-- | print-ap1394.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/print-ap1394.c b/print-ap1394.c index 6ad592e5..d39f27f7 100644 --- a/print-ap1394.c +++ b/print-ap1394.c @@ -55,7 +55,7 @@ fwaddr_string(netdissect_options *ndo, const u_char *addr) return (linkaddr_string(ndo, addr, LINKADDR_IEEE1394, FIREWIRE_EUI64_LEN)); } -static inline void +static void ap1394_hdr_print(netdissect_options *ndo, const u_char *bp, u_int length) { const struct firewire_header *fp; |