aboutsummaryrefslogtreecommitdiffstats
path: root/epan
diff options
context:
space:
mode:
authorAlexis La Goutte <alexis.lagoutte@gmail.com>2019-01-29 19:49:03 +0000
committerAnders Broman <a.broman58@gmail.com>2019-01-30 09:15:01 +0000
commit7db343604a617e1adcd3542b3f819768c5a395da (patch)
tree4301c1e557416b0d5d2ee79827d7c7973a92d7a7 /epan
parent03e1efd6fe9b720ec42a1f869370f41b76aab1d9 (diff)
print: fix parameter 'data' not found in the function declaration
fix warning found with clang and -Wdocumentation CFLAG Change-Id: I9fc122012161c5942c08cb90a9aeda1da6185180 Reviewed-on: https://code.wireshark.org/review/31808 Petri-Dish: Alexis La Goutte <alexis.lagoutte@gmail.com> Reviewed-by: Anders Broman <a.broman58@gmail.com>
Diffstat (limited to 'epan')
-rw-r--r--epan/print.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/epan/print.c b/epan/print.c
index 7611c917c1..33d2c69a3b 100644
--- a/epan/print.c
+++ b/epan/print.c
@@ -767,7 +767,7 @@ write_json_proto_tree(output_fields_t* fields,
* key and its associated nodes in the proto_tree.
* @param proto_node_list_head A 2-dimensional list containing a list of values for each different node json key. The
* elements themselves are a linked list of values associated with the same json key.
- * @param data json writing metadata
+ * @param pdata json writing metadata
*/
static void
write_json_proto_node_list(GSList *proto_node_list_head, write_json_data *pdata)
@@ -853,7 +853,7 @@ write_json_proto_node_list(GSList *proto_node_list_head, write_json_data *pdata)
* @param node_values_head Linked list containing all nodes associated with the same json key in this object.
* @param suffix Suffix that should be added to the json key.
* @param value_writer A function which writes the actual values of the node json key.
- * @param data json writing metadata
+ * @param pdata json writing metadata
*/
static void
write_json_proto_node(GSList *node_values_head,
@@ -874,7 +874,7 @@ write_json_proto_node(GSList *node_values_head,
* Writes a list of values of a single json key. If multiple values are passed they are wrapped in a json array.
* @param node_values_head Linked list containing all values that should be written.
* @param value_writer Function which writes the separate values.
- * @param data json writing metadata
+ * @param pdata json writing metadata
*/
static void
write_json_proto_node_value_list(GSList *node_values_head, proto_node_value_writer value_writer, write_json_data *pdata)