aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-h248_q1950.c
diff options
context:
space:
mode:
authorStephen Fisher <steve@stephen-fisher.com>2011-04-22 17:31:57 +0000
committerStephen Fisher <steve@stephen-fisher.com>2011-04-22 17:31:57 +0000
commitfaeaaaf8d021d909a66260e5609e62324e23eed1 (patch)
tree777dee8ad8ed7026e81a43305dfeeaed3d5d847c /epan/dissectors/packet-h248_q1950.c
parent56237d0c9012f71178d5a32c7d5bf65ff492c249 (diff)
Fix a few "equality comparison with extraneous parentheses" warnings
found by clang 3.0 (trunk 129935) compiler. svn path=/trunk/; revision=36820
Diffstat (limited to 'epan/dissectors/packet-h248_q1950.c')
-rw-r--r--epan/dissectors/packet-h248_q1950.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/epan/dissectors/packet-h248_q1950.c b/epan/dissectors/packet-h248_q1950.c
index e211e0eca5..da1a2a7167 100644
--- a/epan/dissectors/packet-h248_q1950.c
+++ b/epan/dissectors/packet-h248_q1950.c
@@ -291,7 +291,7 @@ static void dissect_bt_tunneled_proto(proto_tree* tree, tvbuff_t* tvb, packet_in
get_ber_identifier(tvb, 0, &class, &pc, &tag);
/* XXX: is this enough to guess it? */
- if ((tag==BER_UNI_TAG_OCTETSTRING)) {
+ if (tag==BER_UNI_TAG_OCTETSTRING) {
dissect_ber_octet_string(FALSE, &asn1_ctx, tree, tvb, 0, hfid, &bctp_tvb);
if (bctp_tvb) {