summaryrefslogtreecommitdiff
path: root/epan/packet.h
diff options
context:
space:
mode:
authorAlexis La Goutte <alexis.lagoutte@gmail.com>2015-11-02 14:53:20 +0100
committerMichael Mann <mmann78@netscape.net>2015-11-02 17:41:49 +0000
commit8fdeb61ab6a1bebebcd5efd9116ee89cd554625d (patch)
tree5ef5b38583c13f7ca4ed5db0da4ed997300ca51e /epan/packet.h
parent307443cbbcd1d19d15242fc2f782ba7d53afcf09 (diff)
downloadwireshark-8fdeb61ab6a1bebebcd5efd9116ee89cd554625d.tar.gz
packet(.h): fix api reference / -Wdocumentation
From api ref : warning: argument 'uint_val' of command @param is not found in the argument list of dissector_get_guid_handle(dissector_table_t const sub_dissectors, guid_key *guid_val) The following parameters of dissector_get_guid_handle(dissector_table_t const sub_dissectors, guid_key *guid_val) are not documented: parameter 'guid_val' From -Wdocumentation parameter 'uint_val' not found in the function declaration [-Wdocumentation] Change-Id: I9c7b82e4ecb5a126cb96c7d6c057440eb5d24bdd Reviewed-on: https://code.wireshark.org/review/11499 Reviewed-by: Michael Mann <mmann78@netscape.net>
Diffstat (limited to 'epan/packet.h')
-rw-r--r--epan/packet.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/epan/packet.h b/epan/packet.h
index 27606d85a6..c953b07c05 100644
--- a/epan/packet.h
+++ b/epan/packet.h
@@ -379,7 +379,7 @@ WS_DLL_PUBLIC int dissector_try_guid_new(dissector_table_t sub_dissectors,
* return the current dissector handle for that value.
*
* @param[in] sub_dissectors Dissector table to search.
- * @param[in] uint_val Value to match, e.g. the port number for the TCP dissector.
+ * @param[in] guid_val Value to match, e.g. the GUID number for the GUID dissector.
* @return The matching dissector handle on success, NULL if no match is found.
*/
WS_DLL_PUBLIC dissector_handle_t dissector_get_guid_handle(