From: Francois-Xavier Le Bail Date: Wed, 19 Jan 2022 10:58:36 +0000 (+0100) Subject: ESP: Put static and int on the same line (style) X-Git-Tag: tcpdump-4.99.2~142 X-Git-Url: https://git.tcpdump.org/tcpdump/commitdiff_plain/865202266c667bb3caa75e4488afb5b1dcff3c5f ESP: Put static and int on the same line (style) [skip ci] (cherry picked from commit 9c9c8a93dd58cf34395fa57cd0997031e4e25ea3) --- diff --git a/print-esp.c b/print-esp.c index d1ea1005..58613f01 100644 --- a/print-esp.c +++ b/print-esp.c @@ -386,10 +386,9 @@ static u_int hex2byte(netdissect_options *ndo, char *hexstring) /* * returns size of binary, 0 on failure. */ -static -int espprint_decode_hex(netdissect_options *ndo, - u_char *binbuf, unsigned int binbuf_len, - char *hex) +static int +espprint_decode_hex(netdissect_options *ndo, + u_char *binbuf, unsigned int binbuf_len, char *hex) { unsigned int len; int i;