aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-dcm.c
diff options
context:
space:
mode:
authorAnders Broman <anders.broman@ericsson.com>2008-10-11 15:00:39 +0000
committerAnders Broman <anders.broman@ericsson.com>2008-10-11 15:00:39 +0000
commit08b51ea5426ed69b531d1b950f1991d7179ba638 (patch)
treebeb83c1669cab90cc30df507eebd906f174cb5a5 /epan/dissectors/packet-dcm.c
parent092aab864a38ca03d3f6f1fcb16a487184de5520 (diff)
Just try to make it compile.
svn path=/trunk/; revision=26416
Diffstat (limited to 'epan/dissectors/packet-dcm.c')
-rw-r--r--epan/dissectors/packet-dcm.c16
1 files changed, 8 insertions, 8 deletions
diff --git a/epan/dissectors/packet-dcm.c b/epan/dissectors/packet-dcm.c
index 8bfee3de4a..b973407936 100644
--- a/epan/dissectors/packet-dcm.c
+++ b/epan/dissectors/packet-dcm.c
@@ -3204,7 +3204,7 @@ static dcm_tag_t dcm_tag_data[] = {
{ 0x50000103, "Data Value Representation", "US", "1", -1, 0},
{ 0x50000104, "Minimum Coordinate Value", "US", "1-n", -1, 0},
{ 0x50000105, "Maximum Coordinate Value", "US", "1-n", -1, 0},
- { 0x50000106, "Curve Range", "SH", "1-n" , -1},
+ { 0x50000106, "Curve Range", "SH", "1-n" , -1, 0},
{ 0x50000110, "Curve Data Descriptor", "US", "1-n", -1, 0},
{ 0x50000112, "Coordinate Start Value", "US", "1-n", -1, 0},
{ 0x50000114, "Coordinate Step Value", "US", "1-n", -1, 0},
@@ -5324,10 +5324,10 @@ dissect_dcm_tag(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree,
proto_item *tag_pitem = NULL;
dcm_tag_t *tag_def = NULL;
- static dcm_tag_t tag_unknown = { 0x00000000, "(unknown)", "UN", 0 };
- static dcm_tag_t tag_private = { 0x00000000, "Private Tag", "UN", 0 };
- static dcm_tag_t tag_private_grp_len = { 0x00000000, "Private Tag Group Length", "UL", 0 };
- static dcm_tag_t tag_grp_length = { 0x00000000, "Group Length", "UL", 0 };
+ static dcm_tag_t tag_unknown = { 0x00000000, "(unknown)", "UN", 0, 0};
+ static dcm_tag_t tag_private = { 0x00000000, "Private Tag", "UN", 0, 0 };
+ static dcm_tag_t tag_private_grp_len = { 0x00000000, "Private Tag Group Length", "UL", 0, 0 };
+ static dcm_tag_t tag_grp_length = { 0x00000000, "Group Length", "UL", 0, 0 };
/* Remember offsets for tree, since we can create tree header only at the very end
@@ -5545,17 +5545,17 @@ dissect_dcm_tag(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree,
if (vl == 0xFFFFFFFF) {
/* 'Just' mark header as the length of the item */
- tag_pitem = proto_tree_add_text(tree, tvb, offset_tag, offset - offset_tag, "");
+ tag_pitem = proto_tree_add_text(tree, tvb, offset_tag, offset - offset_tag, " ");
vl_max = 0; /* We don't know who long this sequence/item is */
}
else if (offset + vl <= endpos) {
/* Show real length of item */
- tag_pitem = proto_tree_add_text(tree, tvb, offset_tag, offset + vl - offset_tag, "");
+ tag_pitem = proto_tree_add_text(tree, tvb, offset_tag, offset + vl - offset_tag, " ");
vl_max = vl;
}
else {
/* Value is longer than what we have in the PDV, -> we do have a OPEN tag */
- tag_pitem = proto_tree_add_text(tree, tvb, offset_tag, endpos - offset_tag, "");
+ tag_pitem = proto_tree_add_text(tree, tvb, offset_tag, endpos - offset_tag, " ");
vl_max = endpos - offset;
}