diff options
author | Guy Harris <guy@alum.mit.edu> | 2016-10-06 02:20:25 -0700 |
---|---|---|
committer | Guy Harris <guy@alum.mit.edu> | 2016-10-06 02:20:25 -0700 |
commit | 7345e3760d973833634cf2aa3b7e0fd0addd711d (patch) | |
tree | 915bfc02729dd4ba38abd3ea4d0086410bc93f08 /signature.c | |
parent | f7bc713c69ef654f1dbb290f44ca33a7766f6dd9 (diff) | |
download | tcpdump-7345e3760d973833634cf2aa3b7e0fd0addd711d.tar.gz |
Get rid of last uses of/mentions of u_intN_t.
It's now all C99-style uintN_t.
Diffstat (limited to 'signature.c')
-rw-r--r-- | signature.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/signature.c b/signature.c index d9811a0b..1af798a2 100644 --- a/signature.c +++ b/signature.c @@ -167,7 +167,7 @@ signature_verify(netdissect_options *ndo, const u_char *pptr, u_int plen, * Clear anything else that needs to be cleared in the copy. * Our caller is assumed to have vetted the clear_arg pointer. */ - (*clear_rtn)((void *)(packet_copy + ((const u_int8_t *)clear_arg - pptr))); + (*clear_rtn)((void *)(packet_copy + ((const uint8_t *)clear_arg - pptr))); /* * Compute the signature. |