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
This commit is contained in:
Alexis La Goutte 2013-08-10 21:30:46 +00:00
parent 467ece42b3
commit 8c15ddff44
1 changed files with 4 additions and 4 deletions

View File

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