summaryrefslogtreecommitdiff
path: root/epan/follow.c
diff options
context:
space:
mode:
authorBill Meier <wmeier@newsguy.com>2012-12-05 15:56:36 +0000
committerBill Meier <wmeier@newsguy.com>2012-12-05 15:56:36 +0000
commit7cd0417af555a78b19c6909a40d1867e0fe9a063 (patch)
treecc09f739029479eee683f26228e098db307fd1aa /epan/follow.c
parentf8ba6b5a077fa89f1d1e55b5bed4bab0ea6b11cf (diff)
downloadwireshark-7cd0417af555a78b19c6909a40d1867e0fe9a063.tar.gz
Fix numerous instances of a variable/parameter name "shadowing" a library function name;
(At least some (gcc ?) compilers give a "shadow" warning for these). svn path=/trunk/; revision=46402
Diffstat (limited to 'epan/follow.c')
-rw-r--r--epan/follow.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/epan/follow.c b/epan/follow.c
index c27ba5afc9..859d5f4205 100644
--- a/epan/follow.c
+++ b/epan/follow.c
@@ -181,16 +181,16 @@ follow_tcp_addr(const address *addr0, guint port0,
return TRUE;
}
-/* select a tcp stream to follow via it's index */
+/* select a tcp stream to follow via its index */
gboolean
-follow_tcp_index(guint32 index)
+follow_tcp_index(guint32 indx)
{
if (find_tcp_index || find_tcp_addr) {
return FALSE;
}
find_tcp_addr = TRUE;
- tcp_stream_to_follow = index;
+ tcp_stream_to_follow = indx;
memset(ip_address, 0, sizeof ip_address);
port[0] = port[1] = 0;