diff options
author | Alexis La Goutte <alexis.lagoutte@gmail.com> | 2014-07-22 18:29:08 +0200 |
---|---|---|
committer | Alexis La Goutte <alexis.lagoutte@gmail.com> | 2014-07-23 19:55:42 +0000 |
commit | 90e46f4a4a4b83aa70398855da60bf166d4348db (patch) | |
tree | e9eb89ee27d7b37b0fafcc4d1b65dc9ae6f7cf2e /ui | |
parent | d610ef23a2a96b632ff087a713c6ed8dc38b83b8 (diff) | |
download | wireshark-90e46f4a4a4b83aa70398855da60bf166d4348db.tar.gz wireshark-90e46f4a4a4b83aa70398855da60bf166d4348db.tar.bz2 wireshark-90e46f4a4a4b83aa70398855da60bf166d4348db.zip |
Fix (-W)documentation error found by Clang
Change-Id: I2d2bbc211e98ad24a27c855031f670b7bdbd530e
Reviewed-on: https://code.wireshark.org/review/3162
Reviewed-by: Michael Mann <mmann78@netscape.net>
Reviewed-by: Alexis La Goutte <alexis.lagoutte@gmail.com>
Diffstat (limited to 'ui')
-rw-r--r-- | ui/conversation_hash.h | 12 | ||||
-rw-r--r-- | ui/gtk/conversations_table.h | 6 |
2 files changed, 5 insertions, 13 deletions
diff --git a/ui/conversation_hash.h b/ui/conversation_hash.h index a46b202566..d7a67785bb 100644 --- a/ui/conversation_hash.h +++ b/ui/conversation_hash.h @@ -151,13 +151,13 @@ gboolean conversation_equal(gconstpointer key1, gconstpointer key2); /** Remove all entries from the conversation table. * - * @param ct the table to reset + * @param ch the table to reset */ extern void reset_conversation_table_data(conv_hash_t *ch); /** Add some data to the conversation table. * - * @param ct the table to add the data to + * @param ch the table to add the data to * @param src source address * @param dst destination address * @param src_port source port @@ -165,8 +165,7 @@ extern void reset_conversation_table_data(conv_hash_t *ch); * @param num_frames number of packets * @param num_bytes number of bytes * @param ts timestamp - * @param sat address type - * @param port_type the port type (e.g. PT_TCP) + * @param ptype the port type (e.g. PT_TCP) */ extern void add_conversation_table_data(conv_hash_t *ch, const address *src, const address *dst, guint32 src_port, guint32 dst_port, int num_frames, int num_bytes, nstime_t *ts, @@ -176,7 +175,7 @@ extern void add_conversation_table_data(conv_hash_t *ch, const address *src, con * addition to the address and port quadruple to uniquely identify the * conversation. * - * @param ct the table to add the data to + * @param ch the table to add the data to * @param src source address * @param dst destination address * @param src_port source port @@ -184,8 +183,7 @@ extern void add_conversation_table_data(conv_hash_t *ch, const address *src, con * @param num_frames number of packets * @param num_bytes number of bytes * @param ts timestamp - * @param sat address type - * @param port_type the port type (e.g. PT_TCP) + * @param ptype the port type (e.g. PT_TCP) * @param conv_id a value to help differentiate the conversation in case the address and port quadruple is not sufficiently unique */ extern void diff --git a/ui/gtk/conversations_table.h b/ui/gtk/conversations_table.h index 25e6bc6968..582af54d3c 100644 --- a/ui/gtk/conversations_table.h +++ b/ui/gtk/conversations_table.h @@ -54,9 +54,6 @@ typedef struct _conversations_table { /** Register the conversation table for the multiple conversation window. * - * @param hide_ports hide the port columns - * @param table_name the table name to be displayed - * @param tap_name the registered tap name * @param filter the optional filter name or NULL * @param packet_func the function to be called for each incoming packet */ @@ -64,9 +61,6 @@ extern void register_conversation_table(conversation_type_e conv_type, const cha /** Init the conversation table for the single conversation window. * - * @param hide_ports hide the port columns - * @param table_name the table name to be displayed - * @param tap_name the registered tap name * @param filter the optional filter name or NULL * @param packet_func the function to be called for each incoming packet */ |