diff options
author | Andy Lester <andy@petdance.com> | 2006-02-07 10:36:56 -0600 |
---|---|---|
committer | Steve Peters <steve@fisharerojo.org> | 2006-02-08 03:23:27 +0000 |
commit | 294a48e93682c45d53fd3e8adb7bbdd7068cbb1d (patch) | |
tree | a6878848cea71feb8b3cc4a56a0c3ba4ea7238b0 /pp_sys.c | |
parent | 78f158d1419ac33753582a090b1b89196bbfe093 (diff) | |
download | perl-294a48e93682c45d53fd3e8adb7bbdd7068cbb1d.tar.gz |
Handle unused args
Message-ID: <20060207223656.GA5177@petdance.com>
p4raw-id: //depot/perl@27129
Diffstat (limited to 'pp_sys.c')
-rw-r--r-- | pp_sys.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -307,8 +307,8 @@ S_emulate_eaccess(pTHX_ const char* path, Mode_t mode) STATIC int S_emulate_eaccess(pTHX_ const char* path, Mode_t mode) { - (void)path; - (void)mode; + PERL_UNUSED_ARG(path); + PERL_UNUSED_ARG(mode); Perl_croak(aTHX_ "switching effective uid is not implemented"); /*NOTREACHED*/ return -1; |