summaryrefslogtreecommitdiff
path: root/ui/tap-sequence-analysis.h
diff options
context:
space:
mode:
authorAlexis La Goutte <alexis.lagoutte@gmail.com>2013-12-02 13:46:39 +0000
committerAlexis La Goutte <alexis.lagoutte@gmail.com>2013-12-02 13:46:39 +0000
commit3f8128d521ac3ef1ac8b338718aed85bec9bc495 (patch)
tree8776d03639b2dbd208cbefc4c9da5b2c1abef0fd /ui/tap-sequence-analysis.h
parent5d53a72f7909279103c788882fd32a4c85bd910f (diff)
downloadwireshark-3f8128d521ac3ef1ac8b338718aed85bec9bc495.tar.gz
Fix (-W)documentation error found by Clang
parameter 'sai' not found in the function declaration [-Werror,-Wdocumentation] svn path=/trunk/; revision=53723
Diffstat (limited to 'ui/tap-sequence-analysis.h')
-rw-r--r--ui/tap-sequence-analysis.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/ui/tap-sequence-analysis.h b/ui/tap-sequence-analysis.h
index 9afd3b3542..f48bfbbba7 100644
--- a/ui/tap-sequence-analysis.h
+++ b/ui/tap-sequence-analysis.h
@@ -82,19 +82,19 @@ typedef struct _seq_analysis_info {
/** Fill in the segment list for sequence analysis
*
* @param cf Capture file to scan
- * @param sai Sequence analysis information. A valid type must be set.
+ * @param sainfo Sequence analysis information. A valid type must be set.
*/
void sequence_analysis_list_get(capture_file *cf, seq_analysis_info_t *sainfo);
/** Free the segment list
*
- * @param sai Sequence analysis information.
+ * @param sainfo Sequence analysis information.
*/
void sequence_analysis_list_free(seq_analysis_info_t *sainfo);
/** Fill in the node address list
*
- * @param sai Sequence analysis information.
+ * @param sainfo Sequence analysis information.
* @return The number of transaction items (not nodes) processed.
*/
int sequence_analysis_get_nodes(seq_analysis_info_t *sainfo);
@@ -102,7 +102,7 @@ int sequence_analysis_get_nodes(seq_analysis_info_t *sainfo);
/** Write an ASCII version of the sequence diagram to a file.
*
* @param pathname Pathname of the file to write.
- * @param sai Sequence analysis information.
+ * @param sainfo Sequence analysis information.
* @param cf Capture file associated with the diagram.
* @param first_node Start drawing at this node.
* @return TRUE on success, FALSE on failure.