aboutsummaryrefslogtreecommitdiffstats
path: root/epan/follow.h
diff options
context:
space:
mode:
authorAlexis La Goutte <alexis.lagoutte@gmail.com>2013-12-02 13:46:30 +0000
committerAlexis La Goutte <alexis.lagoutte@gmail.com>2013-12-02 13:46:30 +0000
commit5d53a72f7909279103c788882fd32a4c85bd910f (patch)
tree347b615edf076c6e6c00e4557b3da6af31e04cdb /epan/follow.h
parentbd5f16acf4f05af7e3249267f1edfa04bc7cfc52 (diff)
Fix (-W)documentation error found by Clang
error: parameter '...' not found in the function declaration [-Werror,-Wdocumentation] svn path=/trunk/; revision=53722
Diffstat (limited to 'epan/follow.h')
-rw-r--r--epan/follow.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/epan/follow.h b/epan/follow.h
index 5c23feae41..6b6cdadbb3 100644
--- a/epan/follow.h
+++ b/epan/follow.h
@@ -49,12 +49,12 @@ typedef struct _tcp_stream_chunk {
/** Build a follow filter based on the current packet's conversation.
*
- * @param packet_info[in] The current packet.
+ * @param packet_info [in] The current packet.
* @return A filter that specifies the conversation. Must be g_free()d
* the caller.
*/
WS_DLL_PUBLIC
-gchar* build_follow_conv_filter( packet_info * );
+gchar* build_follow_conv_filter( packet_info * packet_info);
/** Build a follow filter based on the current TCP stream index.
* follow_tcp_index() must be called prior to calling this.
@@ -70,11 +70,11 @@ gboolean follow_tcp_addr( const address *, guint, const address *, guint );
/** Select a TCP stream to follow via its index.
*
- * @param addr[in] The stream index to follow.
+ * @param addr [in] The stream index to follow.
* @return TRUE on success, FALSE on failure.
*/
WS_DLL_PUBLIC
-gboolean follow_tcp_index( guint32 );
+gboolean follow_tcp_index( guint32 addr);
/** Get the current TCP index being followed.
*