aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-sccp.c
diff options
context:
space:
mode:
authorguy <guy@f5534014-38df-0310-8fa8-9805f1628bb7>2011-05-17 23:39:06 +0000
committerguy <guy@f5534014-38df-0310-8fa8-9805f1628bb7>2011-05-17 23:39:06 +0000
commit29ab14c04d7cab9bb7ebf665aaad236d8dcac457 (patch)
tree5f8126b2305d857c5c4575f1360d35b6a6ec27c7 /epan/dissectors/packet-sccp.c
parent985af3efba49ac122a116369ee23da47c514bc59 (diff)
Squelch a narrowing warning.
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@37228 f5534014-38df-0310-8fa8-9805f1628bb7
Diffstat (limited to 'epan/dissectors/packet-sccp.c')
-rw-r--r--epan/dissectors/packet-sccp.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/epan/dissectors/packet-sccp.c b/epan/dissectors/packet-sccp.c
index 0f23459206..3044447d1a 100644
--- a/epan/dissectors/packet-sccp.c
+++ b/epan/dissectors/packet-sccp.c
@@ -1122,7 +1122,7 @@ dissect_sccp_gt_address_information(tvbuff_t *tvb, packet_info *pinfo,
proto_tree_add_string(digits_tree, hf_sccp_gt_digits, tvb, 0, length, gt_digits);
proto_tree_add_uint(digits_tree, called ? hf_sccp_called_gt_digits_length
: hf_sccp_calling_gt_digits_length,
- tvb, 0, length, strlen(gt_digits));
+ tvb, 0, length, (guint32)strlen(gt_digits));
return digits_tree;
}