summaryrefslogtreecommitdiff
path: root/pp_sys.c
diff options
context:
space:
mode:
authorSteve Peters <steve@fisharerojo.org>2005-07-18 17:59:19 -0500
committerH.Merijn Brand <h.m.brand@xs4all.nl>2005-07-19 05:42:52 +0000
commit0f1f2428e1f9e9aa05108acb4c8ec2a0a83d728e (patch)
tree7436442cb02b76aa1d069165d463ce0fa86e3ae9 /pp_sys.c
parent900658e3894003c933933cc814fc7c95f6f6a2dd (diff)
downloadperl-0f1f2428e1f9e9aa05108acb4c8ec2a0a83d728e.tar.gz
Final (hopefully) fix for fchdir
Message-ID: <20050719035919.GA32670@mccoy.peters.homeunix.org> p4raw-id: //depot/perl@25178
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 545765ca67..0ce6f43dd0 100644
--- a/pp_sys.c
+++ b/pp_sys.c
@@ -3592,7 +3592,7 @@ PP(pp_chdir)
#ifdef HAS_DIRFD
PUSHi(fchdir(dirfd(IoDIRP(io))) >= 0);
#else
- DIE(aTHX PL_no_func, "dirfd");
+ DIE(aTHX_ PL_no_func, "dirfd");
#endif
}
else {