From bd5f16acf4f05af7e3249267f1edfa04bc7cfc52 Mon Sep 17 00:00:00 2001 From: Alexis La Goutte Date: Mon, 2 Dec 2013 13:46:20 +0000 Subject: [PATCH] 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 --- epan/strutil.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/epan/strutil.h b/epan/strutil.h index f44351c0a5..87dd441e8d 100644 --- a/epan/strutil.h +++ b/epan/strutil.h @@ -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