aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-rtcp.c
diff options
context:
space:
mode:
authorBill Meier <wmeier@newsguy.com>2010-06-09 18:32:35 +0000
committerBill Meier <wmeier@newsguy.com>2010-06-09 18:32:35 +0000
commit4bf6168df72cc495bb52aadb7f84ad374595284b (patch)
tree791bbd9707c906a2b73de974ee99a73cb77c36ec /epan/dissectors/packet-rtcp.c
parent7b85f43d0e3f3815131a7b03ef5c115a21bb19e1 (diff)
Do some constifying (based upon gcc -Wwrite-strings warnings)
svn path=/trunk/; revision=33199
Diffstat (limited to 'epan/dissectors/packet-rtcp.c')
-rw-r--r--epan/dissectors/packet-rtcp.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/epan/dissectors/packet-rtcp.c b/epan/dissectors/packet-rtcp.c
index be1a0e5f6d..06a0ba5bb7 100644
--- a/epan/dissectors/packet-rtcp.c
+++ b/epan/dissectors/packet-rtcp.c
@@ -1058,7 +1058,7 @@ dissect_rtcp_app( tvbuff_t *tvb,packet_info *pinfo, int offset, proto_tree *tree
/* Request timestamp (optional) */
if (code == 103)
{
- gchar *buff;
+ const gchar *buff;
item_len = tvb_get_guint8(tvb, offset);
offset += 1;
packet_len -= 1;
@@ -1067,7 +1067,7 @@ dissect_rtcp_app( tvbuff_t *tvb,packet_info *pinfo, int offset, proto_tree *tree
buff = ntp_fmt_ts(tvb_get_ptr(tvb, offset, 8));
proto_tree_add_string_format(PoC1_tree, hf_rtcp_app_poc1_request_ts,
- tvb, offset, 8, ( const char* ) buff,
+ tvb, offset, 8, buff,
"Request timestamp: %s", buff );
offset += 8;
packet_len -=8;
@@ -2256,7 +2256,7 @@ dissect_rtcp_sr( packet_info *pinfo, tvbuff_t *tvb, int offset, proto_tree *tree
{
proto_item* item;
guint32 ts_msw, ts_lsw;
- gchar *buff;
+ const gchar *buff;
int sr_offset = offset;
/* NTP timestamp */
@@ -2267,7 +2267,7 @@ dissect_rtcp_sr( packet_info *pinfo, tvbuff_t *tvb, int offset, proto_tree *tree
proto_tree_add_item(tree, hf_rtcp_ntp_lsw, tvb, offset+4, 4, FALSE);
buff=ntp_fmt_ts(tvb_get_ptr( tvb, offset, 8 ));
- item = proto_tree_add_string_format( tree, hf_rtcp_ntp, tvb, offset, 8, ( const char* ) buff, "MSW and LSW as NTP timestamp: %s", buff );
+ item = proto_tree_add_string_format( tree, hf_rtcp_ntp, tvb, offset, 8, buff, "MSW and LSW as NTP timestamp: %s", buff );
PROTO_ITEM_SET_GENERATED(item);
offset += 8;