summaryrefslogtreecommitdiff
path: root/epan/strutil.h
diff options
context:
space:
mode:
authorEvan Huus <eapache@gmail.com>2013-04-26 18:28:21 +0000
committerEvan Huus <eapache@gmail.com>2013-04-26 18:28:21 +0000
commit63ef04ec84bc7bee9008be686e2e362058229643 (patch)
tree9acdd76172b3e37a08f887543cd0ee01e9a24419 /epan/strutil.h
parent098997e5fb7e152bd777941e1a7a3f2ec3b8759b (diff)
downloadwireshark-63ef04ec84bc7bee9008be686e2e362058229643.tar.gz
Fix a whole bunch of doxygen warnings, mostly typos or renamed parameters.
svn path=/trunk/; revision=49053
Diffstat (limited to 'epan/strutil.h')
-rw-r--r--epan/strutil.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/epan/strutil.h b/epan/strutil.h
index a3f54a7054..e68032c056 100644
--- a/epan/strutil.h
+++ b/epan/strutil.h
@@ -263,7 +263,7 @@ void IA5_7BIT_decode(unsigned char * dest, const unsigned char* src, int len);
/** Copy a string, escaping the 'chr' characters in it
*
* @param str The string to be copied
- * @param char The character to be escaped
+ * @param chr The character to be escaped
* @return A copy of the string with every original 'chr' being
* transformed into double 'chr'.
*/
@@ -273,7 +273,7 @@ gchar* ws_strdup_escape_char (const gchar *str, const gchar chr);
/** Copy a string, unescaping the 'chr' characters in it
*
* @param str The string to be copied
- * @param char The character to be escaped
+ * @param chr The character to be escaped
* @return A copy of the string with every occurrence of double 'chr' in
* the original string being copied as a single 'chr'.
*/