diff options
author | Guy Harris <guy@alum.mit.edu> | 2018-01-11 11:52:30 -0800 |
---|---|---|
committer | Guy Harris <guy@alum.mit.edu> | 2018-01-11 11:52:30 -0800 |
commit | 64677b0d78ff168d98c3035e894c4910c021136e (patch) | |
tree | cc8e70d60eb94840ed27b65275619ecc441d9714 /print-esp.c | |
parent | 6c964291f360ff03c7947693957e51e880d34ee7 (diff) | |
download | tcpdump-64677b0d78ff168d98c3035e894c4910c021136e.tar.gz |
Clean up signed vs. unsigned.
Diffstat (limited to 'print-esp.c')
-rw-r--r-- | print-esp.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/print-esp.c b/print-esp.c index ee12da3e..e6ff79ef 100644 --- a/print-esp.c +++ b/print-esp.c @@ -314,7 +314,7 @@ int espprint_decode_hex(netdissect_options *ndo, len = strlen(hex) / 2; if (len > binbuf_len) { - (*ndo->ndo_warning)(ndo, "secret is too big: %d\n", len); + (*ndo->ndo_warning)(ndo, "secret is too big: %u\n", len); return 0; } |