summaryrefslogtreecommitdiff
path: root/epan/range.h
diff options
context:
space:
mode:
authorAlexis La Goutte <alexis.lagoutte@gmail.com>2013-08-10 21:28:17 +0000
committerAlexis La Goutte <alexis.lagoutte@gmail.com>2013-08-10 21:28:17 +0000
commit9f24c4470944b345c1b7698e749ec16b629414a4 (patch)
treeea259e99358d63e5cac9b0af1792b53c237391f9 /epan/range.h
parentc47aad79ddff15dd82d69d3c194bf6f2b4db99ac (diff)
downloadwireshark-9f24c4470944b345c1b7698e749ec16b629414a4.tar.gz
Fix (-W)documentation error found by Clang
../../epan/range.h:87:11: error: empty paragraph passed to '@return' command [-Werror,-Wdocumentation] * @return ~~~~~~~^ ../../epan/range.h:86:11: error: parameter 'max_value'' not found in the function declaration [-Werror,-Wdocumentation] * @param max_value' specifies the maximum value in a range. ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ../../epan/range.h:86:11: note: did you mean 'max_value'? * @param max_value' specifies the maximum value in a range. ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ max_value svn path=/trunk/; revision=51256
Diffstat (limited to 'epan/range.h')
-rw-r--r--epan/range.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/epan/range.h b/epan/range.h
index e01030f252..c22fc6888a 100644
--- a/epan/range.h
+++ b/epan/range.h
@@ -83,8 +83,8 @@ WS_DLL_PUBLIC range_t *range_empty(void);
* - All values
* @param range the range
* @param es points to the string to be converted.
- * @param max_value' specifies the maximum value in a range.
- * @return
+ * @param max_value specifies the maximum value in a range.
+ * @return convert_ret_t
*/
WS_DLL_PUBLIC convert_ret_t range_convert_str(range_t **range, const gchar *es,
guint32 max_value);