From b845e29d97c9f30c8e7369835f084af19455cbbb Mon Sep 17 00:00:00 2001 From: Dario Lombardo Date: Thu, 23 Jun 2016 17:31:49 +0200 Subject: [PATCH] stats_tree: rename shadow variable Change-Id: I5b3272cc4df728c70d6b0370b0d8a6d3482a0c6c Reviewed-on: https://code.wireshark.org/review/16100 Reviewed-by: Anders Broman --- epan/stats_tree_priv.h | 4 ++-- 1 file 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 */