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>
This commit is contained in:
Ahmad Fatoum 2017-08-07 17:42:10 +02:00 committed by João Valverde
parent 5b3e3ee587
commit a0ee5d6e42
1 changed files with 1 additions and 1 deletions

View File

@ -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);