diff options
author | Francois-Xavier Le Bail <devel.fx.lebail@orange.fr> | 2017-12-13 19:17:47 +0100 |
---|---|---|
committer | Francois-Xavier Le Bail <devel.fx.lebail@orange.fr> | 2017-12-13 19:17:47 +0100 |
commit | 5cea2703185c6af1616dc338c43c6cf67b0bec60 (patch) | |
tree | 004fe256b821973a0f2d249665b32666b6333490 /print-eap.c | |
parent | e9306685c6fa9f76350334930ae14a935673f06b (diff) | |
download | tcpdump-5cea2703185c6af1616dc338c43c6cf67b0bec60.tar.gz |
Remove all storage class specifier 'register'
Let the compiler do the optimizations (or not) based on build options.
Avoid 'value has been optimized out' messages in gdb using '-O0'.
Diffstat (limited to 'print-eap.c')
-rw-r--r-- | print-eap.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/print-eap.c b/print-eap.c index 95eaa17a..827bf672 100644 --- a/print-eap.c +++ b/print-eap.c @@ -148,7 +148,7 @@ static const struct tok eap_aka_subtype_values[] = { */ void eap_print(netdissect_options *ndo, - register const u_char *cp, + const u_char *cp, u_int length) { const struct eap_frame_t *eap; |