Put the parenthesis in the right place

svn path=/trunk/; revision=29894
This commit is contained in:
Jeff Morriss 2009-09-14 13:11:26 +00:00
parent 87cb19aa15
commit f2c8d78562
1 changed files with 2 additions and 2 deletions

View File

@ -443,7 +443,7 @@ dissect_collectd_part_values (tvbuff_t *tvb, packet_info *pinfo, gint offset,
"collectd %s segment: %d (%d) value%s <BAD>",
val_to_str (type, part_names, "UNKNOWN"),
values_count, corrected_values_count,
plurality(values_count), "", "s");
plurality(values_count, "", "s"));
}
else
{
@ -451,7 +451,7 @@ dissect_collectd_part_values (tvbuff_t *tvb, packet_info *pinfo, gint offset,
"collectd %s segment: %d value%s",
val_to_str (type, part_names, "UNKNOWN"),
values_count,
plurality(values_count), "", "s");
plurality(values_count, "", "s"));
}
pt = proto_item_add_subtree (pi, ett_collectd_part_value);