aboutsummaryrefslogtreecommitdiffstats
path: root/dftest.c
diff options
context:
space:
mode:
authorwmeier <wmeier@f5534014-38df-0310-8fa8-9805f1628bb7>2010-01-29 16:09:25 +0000
committerwmeier <wmeier@f5534014-38df-0310-8fa8-9805f1628bb7>2010-01-29 16:09:25 +0000
commit4637a51a4125cdce7e563e0ba7c13c19058c63b5 (patch)
treeb6688a7b2922d82da6c94e25ca74d5753b5c8321 /dftest.c
parent580ca1be3fa4fb00713f86dfd04f9f41df1e86e6 (diff)
Fix various gcc -Wshadow warnings.
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@31729 f5534014-38df-0310-8fa8-9805f1628bb7
Diffstat (limited to 'dftest.c')
-rw-r--r--dftest.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/dftest.c b/dftest.c
index 2aae57cc09..2f3ced581a 100644
--- a/dftest.c
+++ b/dftest.c
@@ -62,7 +62,7 @@ main(int argc, char **argv)
char *gpf_path, *pf_path;
int gpf_open_errno, gpf_read_errno;
int pf_open_errno, pf_read_errno;
- e_prefs *prefs;
+ e_prefs *prefs_p;
dfilter_t *df;
/*
@@ -97,7 +97,7 @@ main(int argc, char **argv)
/* set the c-language locale to the native environment. */
setlocale(LC_ALL, "");
- prefs = read_prefs(&gpf_open_errno, &gpf_read_errno, &gpf_path,
+ prefs_p = read_prefs(&gpf_open_errno, &gpf_read_errno, &gpf_path,
&pf_open_errno, &pf_read_errno, &pf_path);
if (gpf_path != NULL) {
if (gpf_open_errno != 0) {