aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-h263.c
diff options
context:
space:
mode:
authorkrj <krj@f5534014-38df-0310-8fa8-9805f1628bb7>2009-09-24 20:00:21 +0000
committerkrj <krj@f5534014-38df-0310-8fa8-9805f1628bb7>2009-09-24 20:00:21 +0000
commit1e66be7623925864a57d00c97b52f88708cf6b54 (patch)
tree38f6f77786d5869ee199e3e8fd80f0968be1b575 /epan/dissectors/packet-h263.c
parent8d3dd59976ca5a8851a57f28e8c7d6a0f22062e0 (diff)
Don't guard col_append_str with check_col
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@30125 f5534014-38df-0310-8fa8-9805f1628bb7
Diffstat (limited to 'epan/dissectors/packet-h263.c')
-rw-r--r--epan/dissectors/packet-h263.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/epan/dissectors/packet-h263.c b/epan/dissectors/packet-h263.c
index 02001e8ad1..64bd7cd68c 100644
--- a/epan/dissectors/packet-h263.c
+++ b/epan/dissectors/packet-h263.c
@@ -642,9 +642,7 @@ static void dissect_h263_data( tvbuff_t *tvb, packet_info *pinfo, proto_tree *tr
guint32 data;
guint8 startcode;
- if ( check_col( pinfo->cinfo, COL_INFO) ) {
- col_append_str( pinfo->cinfo, COL_INFO, "H263 payload ");
- }
+ col_append_str( pinfo->cinfo, COL_INFO, "H263 payload ");
if( tree ) {
h263_payload_item = proto_tree_add_item( tree, proto_h263_data, tvb, offset, -1, FALSE );