diff options
author | Steve Peters <steve@fisharerojo.org> | 2005-07-18 17:59:19 -0500 |
---|---|---|
committer | H.Merijn Brand <h.m.brand@xs4all.nl> | 2005-07-19 05:42:52 +0000 |
commit | 0f1f2428e1f9e9aa05108acb4c8ec2a0a83d728e (patch) | |
tree | 7436442cb02b76aa1d069165d463ce0fa86e3ae9 /pp_sys.c | |
parent | 900658e3894003c933933cc814fc7c95f6f6a2dd (diff) | |
download | perl-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.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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 { |