Removed redundant comparison that caused compilation failure on OSX

svn path=/trunk/; revision=35536
This commit is contained in:
Graham Bloice 2011-01-14 14:39:40 +00:00
parent 51170aa0fc
commit 8e86e3dbbf
1 changed files with 1 additions and 1 deletions

View File

@ -1563,7 +1563,7 @@ dnp3_al_process_object(tvbuff_t *tvb, packet_info *pinfo, int offset, proto_tree
for (item_num = 0; item_num < num_items; item_num++)
{
/* Create Point item and Process Index */
if (AL_OBJQL_IDX_NI <= al_objq_index && al_objq_index <= AL_OBJQL_IDX_4O)
if (al_objq_index <= AL_OBJQL_IDX_4O)
point_item = proto_tree_add_text(object_tree, tvb, offset, -1, "Point Number");
else
point_item = proto_tree_add_text(object_tree, tvb, offset, -1, "Object: Size");