summaryrefslogtreecommitdiff
path: root/epan/strutil.h
diff options
context:
space:
mode:
authorAlexis La Goutte <alexis.lagoutte@gmail.com>2013-12-02 13:46:20 +0000
committerAlexis La Goutte <alexis.lagoutte@gmail.com>2013-12-02 13:46:20 +0000
commitbd5f16acf4f05af7e3249267f1edfa04bc7cfc52 (patch)
tree2ecc36efca2316bde1958f32092fbc995475cee5 /epan/strutil.h
parent1f3261d99a6f0e48a26480b1afd3339811d01afe (diff)
downloadwireshark-bd5f16acf4f05af7e3249267f1edfa04bc7cfc52.tar.gz
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
Diffstat (limited to 'epan/strutil.h')
-rw-r--r--epan/strutil.h2
1 files changed, 1 insertions, 1 deletions
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