diff options
author | Guy Harris <guy@alum.mit.edu> | 2016-09-20 02:02:06 -0700 |
---|---|---|
committer | Guy Harris <guy@alum.mit.edu> | 2016-09-20 02:02:06 -0700 |
commit | db62bcccac0a87802ae5786afebdebe7555d4f1e (patch) | |
tree | 59889087fa991e750f90576adeeb60f274a684d1 /print-fr.c | |
parent | e175de6b8c086923429aeb81143a98b666c35dea (diff) | |
download | tcpdump-db62bcccac0a87802ae5786afebdebe7555d4f1e.tar.gz |
Make another never-negative variable an unsigned.
It's assigned a u_int value, and printed with %u, so make it a u_int.
Diffstat (limited to 'print-fr.c')
-rw-r--r-- | print-fr.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -775,7 +775,7 @@ q933_print(netdissect_options *ndo, { const u_char *ptemp = p; const struct ie_tlv_header_t *ie_p; - int olen; + u_int olen; u_int is_ansi = 0; u_int codeset; u_int ie_is_known = 0; |