aboutsummaryrefslogtreecommitdiffstats
path: root/epan/proto.h
diff options
context:
space:
mode:
authorJeff Morriss <jeff.morriss.ws@gmail.com>2013-07-17 14:01:47 +0000
committerJeff Morriss <jeff.morriss.ws@gmail.com>2013-07-17 14:01:47 +0000
commit33cf749c19d76f37a094173b385c7691685be0c8 (patch)
tree1fa0d3fe78e93456e2afbe21af8d7143c5f05afd /epan/proto.h
parentce4ad19204ca5f865d06ce8c3785aed6e10bbe54 (diff)
Fix up some indentation.
svn path=/trunk/; revision=50697
Diffstat (limited to 'epan/proto.h')
-rw-r--r--epan/proto.h20
1 files changed, 10 insertions, 10 deletions
diff --git a/epan/proto.h b/epan/proto.h
index e224364cb0..358130d7ed 100644
--- a/epan/proto.h
+++ b/epan/proto.h
@@ -387,8 +387,8 @@ struct _header_field_info {
/** Used when registering many fields at once, using proto_register_field_array() */
typedef struct hf_register_info {
- int *p_id; /**< written to by register() function */
- header_field_info hfinfo; /**< the field info to be registered */
+ int *p_id; /**< written to by register() function */
+ header_field_info hfinfo; /**< the field info to be registered */
} hf_register_info;
@@ -403,15 +403,15 @@ typedef struct _item_label_t {
/** Contains the field information for the proto_item. */
typedef struct field_info {
header_field_info *hfinfo; /**< pointer to registered field information */
- gint start; /**< current start of data in field_info.ds_tvb */
- gint length; /**< current data length of item in field_info.ds_tvb */
- gint appendix_start; /**< start of appendix data */
- gint appendix_length; /**< length of appendix data */
- gint tree_type; /**< one of ETT_ or -1 */
+ gint start; /**< current start of data in field_info.ds_tvb */
+ gint length; /**< current data length of item in field_info.ds_tvb */
+ gint appendix_start; /**< start of appendix data */
+ gint appendix_length; /**< length of appendix data */
+ gint tree_type; /**< one of ETT_ or -1 */
item_label_t *rep; /**< string for GUI tree */
- guint32 flags; /**< bitfield like FI_GENERATED, ... */
- tvbuff_t *ds_tvb; /**< data source tvbuff */
- fvalue_t value;
+ guint32 flags; /**< bitfield like FI_GENERATED, ... */
+ tvbuff_t *ds_tvb; /**< data source tvbuff */
+ fvalue_t value;
} field_info;