diff options
author | Steve Peters <steve@fisharerojo.org> | 2006-10-21 02:04:19 +0000 |
---|---|---|
committer | Steve Peters <steve@fisharerojo.org> | 2006-10-21 02:04:19 +0000 |
commit | 2c2f35abb7961b572c45e5e167bb72553908228d (patch) | |
tree | bbc8663e7791a76212e4212b4180661ca828c34a /pp_sys.c | |
parent | 10192282fd9e466116e983d131ac76da3af98dab (diff) | |
download | perl-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.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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); |