aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlexis La Goutte <alexis.lagoutte@gmail.com>2019-01-06 20:49:32 +0100
committerGerald Combs <gerald@wireshark.org>2019-01-07 22:08:05 +0000
commite49ec73fc712b34cd61b825fbd3c07223ba01ad5 (patch)
treec980496010e0a5ee49844e0dbb658268420fd9c6
parent30e677593559c5c328e770d0e0bfb50c8e6dcd62 (diff)
str_util(.h): fix issue on doxygen documentation
parameter 'string' not found in the function declaration [-Wdocumentation] Change-Id: I8c6fe47e708411e329954a682ea4da10aad348f6 Reviewed-on: https://code.wireshark.org/review/31423 Petri-Dish: Alexis La Goutte <alexis.lagoutte@gmail.com> Tested-by: Petri Dish Buildbot Reviewed-by: Gerald Combs <gerald@wireshark.org>
-rw-r--r--wsutil/str_util.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/wsutil/str_util.h b/wsutil/str_util.h
index 2abae48284..9bdc82bdcd 100644
--- a/wsutil/str_util.h
+++ b/wsutil/str_util.h
@@ -56,7 +56,7 @@ gchar *ascii_strup_inplace(gchar *str);
/** Check if an entire string consists of printable characters
*
- * @param string The string to be checked
+ * @param str The string to be checked
* @return TRUE if the entire string is printable, otherwise FALSE
*/
WS_DLL_PUBLIC
@@ -64,7 +64,7 @@ gboolean isprint_string(const gchar *str);
/** Check if an entire UTF-8 string consists of printable characters
*
- * @param string The string to be checked
+ * @param str The string to be checked
* @param length The number of bytes to validate
* @return TRUE if the entire string is printable, otherwise FALSE
*/
@@ -73,7 +73,7 @@ gboolean isprint_utf8_string(const gchar *str, guint length);
/** Check if an entire string consists of digits
*
- * @param string The string to be checked
+ * @param str The string to be checked
* @return TRUE if the entire string is digits, otherwise FALSE
*/
WS_DLL_PUBLIC