summaryrefslogtreecommitdiff
path: root/pp_sys.c
diff options
context:
space:
mode:
authorDave Mitchell <davem@fdisolutions.com>2007-09-24 14:18:03 +0000
committerDave Mitchell <davem@fdisolutions.com>2007-09-24 14:18:03 +0000
commitd686460631456fd94087dd18913a0b79995da976 (patch)
tree6c70f8a3dc94aec393ba9dd9943e9805189c869f /pp_sys.c
parentaa976d0c37399f75e81801ee86455944a2734d9c (diff)
downloadperl-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.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/pp_sys.c b/pp_sys.c
index 7d0bb2da6f..7770dc2730 100644
--- a/pp_sys.c
+++ b/pp_sys.c
@@ -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)