Fix a proto_tree_add_item() encoding arg;

Remove some unneeded #includes.

svn path=/trunk/; revision=39524
This commit is contained in:
Bill Meier 2011-10-23 20:48:47 +00:00
parent b21290e31c
commit f645297b23
1 changed files with 1 additions and 7 deletions

View File

@ -27,12 +27,6 @@
# include "config.h"
#endif
#include <stdlib.h>
#ifdef HAVE_SYS_TYPES_H
# include <sys/types.h>
#endif
#ifdef HAVE_NETINET_IN_H
# include <netinet/in.h>
#endif
@ -364,7 +358,7 @@ dissect_fc4type (proto_tree *parent_tree, tvbuff_t *tvb, int offset, int hfindex
if(parent_tree){
item=proto_tree_add_item(parent_tree, hfindex, tvb, offset,
32, TRUE);
32, ENC_NA);
tree=proto_item_add_subtree(item, ett_fc4flags);
}