aboutsummaryrefslogtreecommitdiffstats
path: root/plugins/asn1/packet-asn1.c
diff options
context:
space:
mode:
authorStig Bjørlykke <stig@bjorlykke.org>2010-05-20 14:53:29 +0000
committerStig Bjørlykke <stig@bjorlykke.org>2010-05-20 14:53:29 +0000
commitaa6dc5e692e55b200f9a022681565b28f1c34990 (patch)
treef6729eabeb8e546cef364ca845fd92b4a90a9b4b /plugins/asn1/packet-asn1.c
parentf945be91f695d5c42f11982bef473c0f75e985f3 (diff)
Fixed warning "Field width should have type 'int'".
svn path=/trunk/; revision=32909
Diffstat (limited to 'plugins/asn1/packet-asn1.c')
-rw-r--r--plugins/asn1/packet-asn1.c6
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;