aboutsummaryrefslogtreecommitdiffstats
path: root/epan/range.h
diff options
context:
space:
mode:
authorAhmad Fatoum <ahmad@a3f.at>2017-08-07 17:42:10 +0200
committerJoão Valverde <j@v6e.pt>2017-08-07 18:26:34 +0000
commita0ee5d6e42a00d76ff8d98b8877867927896c165 (patch)
tree92ae7b300feb645e2b26c64dc7e760ed00273318 /epan/range.h
parent5b3e3ee58748ac1fd9201d2d3facbed1b9b1e800 (diff)
Fix -Wdocumentation warning about range_foreach2
Mismatch between parameter name in comment and prototype Change-Id: Ia458362a3cc8cd073dbb0a184f28b28f12b19b9f Reviewed-on: https://code.wireshark.org/review/22993 Reviewed-by: João Valverde <j@v6e.pt>
Diffstat (limited to 'epan/range.h')
-rw-r--r--epan/range.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/epan/range.h b/epan/range.h
index 791719ad59..9c3eaf94a0 100644
--- a/epan/range.h
+++ b/epan/range.h
@@ -140,7 +140,7 @@ WS_DLL_PUBLIC void range_foreach(range_t *range, void (*callback)(guint32 val));
/** This function calls the provided callback function for each value in
* in the range. Takes an optional pointer argument.
* @param range the range
- * @param callback the callback function
+ * @param callback2 the callback function
* @param ptr pointer passed to the callback
*/
WS_DLL_PUBLIC void range_foreach2(range_t *range, void (*callback2)(guint32 val, gpointer ptr), gpointer ptr);