A small correction to the documentation to bring it in line with the code.

Change-Id: I5818b9f3348a70d817bf885697cd67440d812889
Signed-off-by: Richard Sharpe <realrichardsharpe@gmail.com>
Reviewed-on: https://code.wireshark.org/review/7121
Reviewed-by: Gerald Combs <gerald@wireshark.org>
This commit is contained in:
Richard Sharpe 2015-02-14 11:41:47 -08:00 committed by Gerald Combs
parent f80a720a88
commit bade5f31da
1 changed files with 4 additions and 2 deletions

View File

@ -1102,10 +1102,12 @@ protocol or field labels to the proto_tree:
proto_tree_add_item(tree, id, tvb, start, length, encoding);
proto_item*
proto_tree_add_subtree(tree, tvb, start, length, label);
proto_tree_add_subtree(tree, tvb, start, length, subtree_id, tree_item,
label);
proto_item*
proto_tree_add_subtree_format(tree, tvb, start, length, format, ...);
proto_tree_add_subtree_format(tree, tvb, start, length, subtree_id,
tree_item. format, ...);
proto_item*
proto_tree_add_none_format(tree, id, tvb, start, length, format, ...);