summaryrefslogtreecommitdiff
path: root/ui/packet_list_utils.h
diff options
context:
space:
mode:
authorAlexis La Goutte <alexis.lagoutte@gmail.com>2013-08-10 21:30:46 +0000
committerAlexis La Goutte <alexis.lagoutte@gmail.com>2013-08-10 21:30:46 +0000
commit8c15ddff443b934251e091259ec9becb1bfe6c4f (patch)
tree793a22e074894c0d8c07aa118e137775b804a98a /ui/packet_list_utils.h
parent467ece42b3e00b1b4d9a74a69843aa1ab930ddb7 (diff)
downloadwireshark-8c15ddff443b934251e091259ec9becb1bfe6c4f.tar.gz
Fix (-W)documentation error found by Clang
./packet_list_utils.h:37:11: error: parameter 'col[IN]' not found in the function declaration [-Werror,-Wdocumentation] * @param col[IN] The column number. ^~~~~~~ ./packet_list_utils.h:38:11: error: parameter 'cf[IN]' not found in the function declaration [-Werror,-Wdocumentation] * @param cf[IN] The capture file containing the packet data. ^~~~~~ ./packet_list_utils.h:47:11: error: parameter 'col[IN]' not found in the function declaration [-Werror,-Wdocumentation] * @param col[IN] The column number. ^~~~~~~ ./packet_list_utils.h:48:11: error: parameter 'cf[IN]' not found in the function declaration [-Werror,-Wdocumentation] * @param cf[IN] The capture file containing the packet data. ^~~~~~ svn path=/trunk/; revision=51273
Diffstat (limited to 'ui/packet_list_utils.h')
-rw-r--r--ui/packet_list_utils.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/ui/packet_list_utils.h b/ui/packet_list_utils.h
index be36ec0884..866ff70d8a 100644
--- a/ui/packet_list_utils.h
+++ b/ui/packet_list_utils.h
@@ -34,8 +34,8 @@ extern "C" {
/**
* Check to see if a column should be right justified.
*
- * @param col[IN] The column number.
- * @param cf[IN] The capture file containing the packet data.
+ * @param [IN]col The column number.
+ * @param [IN]cf The capture file containing the packet data.
*
* @return TRUE if the column should be right justified, FALSE otherwise.
*/
@@ -44,8 +44,8 @@ gboolean right_justify_column (gint col, capture_file *cf);
/**
* Check to see if a column's data should be resolved.
*
- * @param col[IN] The column number.
- * @param cf[IN] The capture file containing the packet data.
+ * @param [IN]col The column number.
+ * @param [IN]cf The capture file containing the packet data.
*
* @return TRUE if resolution is required, FALSE otherwise.
*/