diff options
author | Dave Mitchell <davem@fdisolutions.com> | 2007-09-24 14:18:03 +0000 |
---|---|---|
committer | Dave Mitchell <davem@fdisolutions.com> | 2007-09-24 14:18:03 +0000 |
commit | d686460631456fd94087dd18913a0b79995da976 (patch) | |
tree | 6c70f8a3dc94aec393ba9dd9943e9805189c869f /pp_sys.c | |
parent | aa976d0c37399f75e81801ee86455944a2734d9c (diff) | |
download | perl-d686460631456fd94087dd18913a0b79995da976.tar.gz |
sixth attempt to silence S_emulate_eaccess compiler warning
p4raw-id: //depot/perl@31954
Diffstat (limited to 'pp_sys.c')
-rw-r--r-- | pp_sys.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -297,7 +297,7 @@ S_emulate_eaccess(pTHX_ const char* path, Mode_t mode) return res; } -# define PERL_EFF_ACCESS(p,f) (emulate_eaccess(aTHX_ (p), (f))) +# define PERL_EFF_ACCESS(p,f) (S_emulate_eaccess(aTHX_ (p), (f))) #endif PP(pp_backtick) |