aboutsummaryrefslogtreecommitdiffstats
path: root/epan/stats_tree_priv.h
diff options
context:
space:
mode:
authorDario Lombardo <lomato@gmail.com>2016-06-23 17:31:49 +0200
committerAnders Broman <a.broman58@gmail.com>2016-06-26 06:00:43 +0000
commitb845e29d97c9f30c8e7369835f084af19455cbbb (patch)
tree83b4cb588c6adf035eae237fda1d0541672d0ab9 /epan/stats_tree_priv.h
parent581d44f4ad84e6147ce60b8a8536fb17512a423d (diff)
stats_tree: rename shadow variable
Change-Id: I5b3272cc4df728c70d6b0370b0d8a6d3482a0c6c Reviewed-on: https://code.wireshark.org/review/16100 Reviewed-by: Anders Broman <a.broman58@gmail.com>
Diffstat (limited to 'epan/stats_tree_priv.h')
-rw-r--r--epan/stats_tree_priv.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/epan/stats_tree_priv.h b/epan/stats_tree_priv.h
index 561ed8aecf..131b96f41c 100644
--- a/epan/stats_tree_priv.h
+++ b/epan/stats_tree_priv.h
@@ -222,10 +222,10 @@ WS_DLL_PUBLIC gint stats_tree_get_default_sort_col (stats_tree *st);
WS_DLL_PUBLIC gboolean stats_tree_is_default_sort_DESC (stats_tree *st);
/** returns the column name for a given column index */
-WS_DLL_PUBLIC const gchar* stats_tree_get_column_name (gint index);
+WS_DLL_PUBLIC const gchar* stats_tree_get_column_name (gint col_index);
/** returns the maximum number of characters in the value of a column */
-WS_DLL_PUBLIC gint stats_tree_get_column_size (gint index);
+WS_DLL_PUBLIC gint stats_tree_get_column_size (gint col_index);
/** returns the formatted column values for the current node
as array of gchar*. Caller must free entries and free array */