aboutsummaryrefslogtreecommitdiffstats
path: root/epan/frame_data.c
diff options
context:
space:
mode:
authorGerald Combs <gerald@wireshark.org>2013-05-15 17:49:45 +0000
committerGerald Combs <gerald@wireshark.org>2013-05-15 17:49:45 +0000
commit6b0c550696978f75f5baabce7521e4c52985397d (patch)
tree2749cc764c50bdc3eba3fd9612647e9b806a732a /epan/frame_data.c
parentac3957c4cd6c5690cabc73f89de5e075c5ec6eb8 (diff)
Un-shadow a couple of variables.
svn path=/trunk/; revision=49317
Diffstat (limited to 'epan/frame_data.c')
-rw-r--r--epan/frame_data.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/epan/frame_data.c b/epan/frame_data.c
index b489876a8b..63d980592b 100644
--- a/epan/frame_data.c
+++ b/epan/frame_data.c
@@ -120,10 +120,10 @@ p_remove_proto_data(frame_data *fd, int proto, guint8 key)
}
gchar *
-p_get_proto_name_and_key(frame_data *fd, guint index){
+p_get_proto_name_and_key(frame_data *fd, guint pfd_index){
frame_proto_data *temp;
- temp = (frame_proto_data*)g_slist_nth_data(fd->pfd, index);
+ temp = (frame_proto_data*)g_slist_nth_data(fd->pfd, pfd_index);
return ep_strdup_printf("[%s, key %u]",proto_get_protocol_name(temp->proto), temp->key);