Just try to make it compile.

svn path=/trunk/; revision=26416
This commit is contained in:
Anders Broman 2008-10-11 15:00:39 +00:00
parent 092aab864a
commit 08b51ea542

View file

@ -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