This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
Remove two more unused C<n_a>s
authorNicholas Clark <nick@ccl4.org>
Wed, 8 Jun 2005 08:50:06 +0000 (08:50 +0000)
committerNicholas Clark <nick@ccl4.org>
Wed, 8 Jun 2005 08:50:06 +0000 (08:50 +0000)
p4raw-id: //depot/perl@24750

pp_sys.c

index a0aa747..83ac580 100644 (file)
--- a/pp_sys.c
+++ b/pp_sys.c
@@ -3011,7 +3011,6 @@ PP(pp_fteread)
     STACKED_FTEST_CHECK;
 #ifdef PERL_EFF_ACCESS_R_OK
     if ((PL_op->op_private & OPpFT_ACCESS) && SvPOK(TOPs)) {
-       STRLEN n_a;
        result = PERL_EFF_ACCESS_R_OK(POPpx);
        if (result == 0)
            RETPUSHYES;
@@ -3039,7 +3038,6 @@ PP(pp_ftewrite)
     STACKED_FTEST_CHECK;
 #ifdef PERL_EFF_ACCESS_W_OK
     if ((PL_op->op_private & OPpFT_ACCESS) && SvPOK(TOPs)) {
-       STRLEN n_a;
        result = PERL_EFF_ACCESS_W_OK(POPpx);
        if (result == 0)
            RETPUSHYES;