aboutsummaryrefslogtreecommitdiffstats
path: root/packet-tcap.c
diff options
context:
space:
mode:
authorJörg Mayer <jmayer@loplof.de>2004-01-23 01:51:38 +0000
committerJörg Mayer <jmayer@loplof.de>2004-01-23 01:51:38 +0000
commitd34cfd15689629999452f792c3a9e5b01d556345 (patch)
tree46c9ce4679ba92a3d42c0cd48052fcb70833b2b4 /packet-tcap.c
parentfa9608388fcf1ae5d95d8d157d2fc29f11e30bf0 (diff)
trivial signed/unsigned warning fixes
svn path=/trunk/; revision=9797
Diffstat (limited to 'packet-tcap.c')
-rw-r--r--packet-tcap.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/packet-tcap.c b/packet-tcap.c
index 70a78a1430..b596da80c3 100644
--- a/packet-tcap.c
+++ b/packet-tcap.c
@@ -9,7 +9,7 @@
*
* (append your name here for newer version)
*
- * $Id: packet-tcap.c,v 1.5 2003/12/29 00:41:07 guy Exp $
+ * $Id: packet-tcap.c,v 1.6 2004/01/23 01:51:38 jmayer Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@ethereal.com>
@@ -247,7 +247,7 @@ dissect_tcap_eoc(ASN1_SCK *asn1, proto_tree *tree)
}
static int
-dissect_tcap_tag(ASN1_SCK *asn1, proto_tree *tree, guint *tag, guchar * str)
+dissect_tcap_tag(ASN1_SCK *asn1, proto_tree *tree, guint *tag, gchar * str)
{
guint saved_offset, real_tag;
@@ -264,7 +264,7 @@ dissect_tcap_tag(ASN1_SCK *asn1, proto_tree *tree, guint *tag, guchar * str)
}
static int
-dissect_tcap_octet(ASN1_SCK *asn1, proto_tree *tree, guchar * str)
+dissect_tcap_octet(ASN1_SCK *asn1, proto_tree *tree, gchar * str)
{
guint saved_offset;
guchar my_oct;
@@ -277,7 +277,7 @@ dissect_tcap_octet(ASN1_SCK *asn1, proto_tree *tree, guchar * str)
}
static int
-dissect_tcap_integer(ASN1_SCK *asn1, proto_tree *tree, guint len, guchar * str)
+dissect_tcap_integer(ASN1_SCK *asn1, proto_tree *tree, guint len, gchar * str)
{
guint saved_offset;
gint32 invokeId;