Fix (-W)documentation error found by Clang

error: parameter '...' not found in the function declaration [-Werror,-Wdocumentation]

svn path=/trunk/; revision=53722
This commit is contained in:
Alexis La Goutte 2013-12-02 13:46:30 +00:00
parent bd5f16acf4
commit 5d53a72f79
1 changed files with 4 additions and 4 deletions

View File

@ -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.
*