aboutsummaryrefslogtreecommitdiffstats
path: root/epan/wmem
diff options
context:
space:
mode:
authorAlexis La Goutte <alexis.lagoutte@gmail.com>2014-04-14 20:16:40 +0200
committerAnders Broman <a.broman58@gmail.com>2014-04-14 20:19:36 +0000
commit1fceb512f7f5fb3e2018dca7dc0fe541c3fbeef7 (patch)
treea9b2fad82efea0051084568e59da1b2fc2a13030 /epan/wmem
parent05ce6efb8cecd713375b3e2c4dce8c3bd49b2cd3 (diff)
Fix warning when generate documentation (doxygen)
epan/wmem/wmem_strutl.h:82: warning: Found unknown command `\allocator' epan/wmem/wmem_strutl.h:82: warning: Found unknown command `\allocator' epan/wmem/wmem_strutl.h:80: warning: Found unknown command `\str' epan/wmem/wmem_strutl.h:81: warning: Found unknown command `\len' epan/wmem/wmem_strutl.h:81: warning: Found unknown command `\str' epan/wmem/wmem_strutl.h:81: warning: Found unknown command `\st Change-Id: I0c3908f0e4aa84cc20fad954638b0cb10b1d6dee Reviewed-on: https://code.wireshark.org/review/1131 Reviewed-by: Anders Broman <a.broman58@gmail.com>
Diffstat (limited to 'epan/wmem')
-rw-r--r--epan/wmem/wmem_strutl.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/epan/wmem/wmem_strutl.h b/epan/wmem/wmem_strutl.h
index b4c66c00fa..71e92df5f9 100644
--- a/epan/wmem/wmem_strutl.h
+++ b/epan/wmem/wmem_strutl.h
@@ -80,14 +80,14 @@ wmem_strsplit(wmem_allocator_t *allocator, const gchar *src,
/**
* wmem_ascii_strdown:
* Based on g_ascii_strdown
- * @allocator: An enumeration of the different types of available allocators.
- * @str: a string.
- * @len: length of @str in bytes, or -1 if @str is nul-terminated.
+ * @param allocator: An enumeration of the different types of available allocators.
+ * @param str: a string.
+ * @param len: length of @param str in bytes, or -1 if @param str is nul-terminated.
*
* Converts all upper case ASCII letters to lower case ASCII letters.
*
* Return value: a newly-allocated string, with all the upper case
- * characters in @str converted to lower case, with
+ * characters in @param str converted to lower case, with
* semantics that exactly match g_ascii_tolower(). (Note
* that this is unlike the old g_strdown(), which modified
* the string in place.)