Fix (-W)documentation error found by Clang

../../epan/strutil.h:95:11: error: parameter 'line' not found in the function declaration [-Werror,-Wdocumentation]
 * @param line A pointer to the input string
          ^~~~
../../epan/strutil.h:95:11: note: did you mean 'string'?
 * @param line A pointer to the input string
          ^~~~
          string

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

View File

@ -92,7 +92,7 @@ gchar* format_text_wsp(const guchar *line, size_t len);
* (space, tab, carriage return, new line, vertical tab, or formfeed)
* which will be replaced by a space, and return a pointer to it.
*
* @param line A pointer to the input string
* @param string A pointer to the input string
* @param len The length of the input string
* @param chr The character to use to replace non-printable characters
* @return A pointer to the formatted string