diff options
author | Stig Bjørlykke <stig@bjorlykke.org> | 2010-05-20 14:53:29 +0000 |
---|---|---|
committer | Stig Bjørlykke <stig@bjorlykke.org> | 2010-05-20 14:53:29 +0000 |
commit | aa6dc5e692e55b200f9a022681565b28f1c34990 (patch) | |
tree | f6729eabeb8e546cef364ca845fd92b4a90a9b4b | |
parent | f945be91f695d5c42f11982bef473c0f75e985f3 (diff) | |
download | wireshark-aa6dc5e692e55b200f9a022681565b28f1c34990.tar.gz wireshark-aa6dc5e692e55b200f9a022681565b28f1c34990.tar.bz2 wireshark-aa6dc5e692e55b200f9a022681565b28f1c34990.zip |
Fixed warning "Field width should have type 'int'".
svn path=/trunk/; revision=32909
-rw-r--r-- | plugins/asn1/packet-asn1.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/plugins/asn1/packet-asn1.c b/plugins/asn1/packet-asn1.c index 77a8fc6021..1ce3cf6371 100644 --- a/plugins/asn1/packet-asn1.c +++ b/plugins/asn1/packet-asn1.c @@ -2932,13 +2932,13 @@ save_reference(PDUinfo *p) } static void -tbl_type(guint n, GNode *pdu, GNode *list, guint fullindex); +tbl_type(gint n, GNode *pdu, GNode *list, guint fullindex); /* evaluate typeref, pointer to current pdu node and typedef */ static void -tbl_typeref(guint n, GNode *pdu, GNode *tree, guint fullindex) +tbl_typeref(gint n, GNode *pdu, GNode *tree, guint fullindex) { GNode *q; PDUinfo *p = (PDUinfo *)pdu->data, *p1; @@ -3108,7 +3108,7 @@ tbl_typeref(guint n, GNode *pdu, GNode *tree, guint fullindex) } static void -tbl_type(guint n, GNode *pdu, GNode *list, guint fullindex) /* indent, pdu, source type node list */ +tbl_type(gint n, GNode *pdu, GNode *list, guint fullindex) /* indent, pdu, source type node list */ { GNode *q, *pdu1; PDUinfo *p, *p1; |