aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlexis La Goutte <alexis.lagoutte@gmail.com>2013-08-10 21:29:59 +0000
committerAlexis La Goutte <alexis.lagoutte@gmail.com>2013-08-10 21:29:59 +0000
commitf1c0e519b8d4af6bbe1a1f2adc2bc6e46d177989 (patch)
tree6434bba360a7c4f17f0e372e6afe0330509492cc
parent3c0c2e2e75a5b28bf7a1db19d1dea4dd9900cf81 (diff)
Fix (-W)documentation error found by Clang
packet-jxta.c:1668:13: error: parameter 'names' not found in the function declaration [-Werror,-Wdocumentation] * @param names The table of names. ^~~~~ packet-jxta.c:1668:13: note: did you mean 'names_table'? * @param names The table of names. ^~~~~ names_table svn path=/trunk/; revision=51268
-rw-r--r--epan/dissectors/packet-jxta.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/epan/dissectors/packet-jxta.c b/epan/dissectors/packet-jxta.c
index 6b23049533..8f5878718d 100644
--- a/epan/dissectors/packet-jxta.c
+++ b/epan/dissectors/packet-jxta.c
@@ -1665,7 +1665,7 @@ static int dissect_jxta_message_element_1(tvbuff_t * tvb, packet_info * pinfo, p
* @param pinfo Packet Info.
* @param tree The protocol tree.
* @param names_count The number of elements in the names table.
-* @param names The table of names.
+* @param names_table The table of names.
* @return Number of bytes from the tvbuff_t which were processed, 0 (zero) if
* the packet was not recognized as a JXTA packet and negative if the
* dissector needs more bytes in order to process a PDU.