per: remove extra parenthese

This commit is contained in:
Alexis La Goutte 2021-02-06 20:22:41 +00:00 committed by AndersBroman
parent d735f8b9ee
commit 316ecda0a7
1 changed files with 1 additions and 1 deletions

View File

@ -2699,7 +2699,7 @@ call_per_oid_callback(const char *oid, tvbuff_t *tvb, packet_info *pinfo, proto_
}
if (oid == NULL ||
(( dissector_try_string(per_oid_dissector_table, oid, val_tvb, pinfo, tree, actx)) == 0))
(dissector_try_string(per_oid_dissector_table, oid, val_tvb, pinfo, tree, actx)) == 0)
{
proto_tree_add_expert(tree, pinfo, &ei_per_oid_not_implemented, val_tvb, 0, -1);
dissect_per_open_type(tvb, start_offset, actx, tree, hf_index, NULL);