summaryrefslogtreecommitdiff
path: root/pp_sys.c
diff options
context:
space:
mode:
authorSteve Peters <steve@fisharerojo.org>2006-10-21 02:04:19 +0000
committerSteve Peters <steve@fisharerojo.org>2006-10-21 02:04:19 +0000
commit2c2f35abb7961b572c45e5e167bb72553908228d (patch)
treebbc8663e7791a76212e4212b4180661ca828c34a /pp_sys.c
parent10192282fd9e466116e983d131ac76da3af98dab (diff)
downloadperl-2c2f35abb7961b572c45e5e167bb72553908228d.tar.gz
Quiet a warning in pp_sys.c on AIX.
p4raw-id: //depot/perl@29068
Diffstat (limited to 'pp_sys.c')
-rw-r--r--pp_sys.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/pp_sys.c b/pp_sys.c
index cdc9385967..e71eecd208 100644
--- a/pp_sys.c
+++ b/pp_sys.c
@@ -3011,7 +3011,7 @@ PP(pp_ftrread)
if (use_access) {
#if defined(HAS_ACCESS) || defined (PERL_EFF_ACCESS)
- const char *const name = POPpx;
+ const char *name = POPpx;
if (effective) {
# ifdef PERL_EFF_ACCESS
result = PERL_EFF_ACCESS(name, access_mode);