From: Steve Hay Date: Mon, 27 Feb 2006 12:21:14 +0000 (+0000) Subject: Fix code-before-declaration error (under VC++) from change #27334 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=334e202ef11738e690e868e859b7602254641974;p=p5sagit%2Fp5-mst-13.2.git Fix code-before-declaration error (under VC++) from change #27334 p4raw-link: @27334 on //depot/perl: b37c2d43c8bccbefe3985273e9661833102148d0 p4raw-id: //depot/perl@27337 --- diff --git a/perlio.c b/perlio.c index 2c352f1..0cb4922 100644 --- a/perlio.c +++ b/perlio.c @@ -601,9 +601,9 @@ void PerlIO_list_push(pTHX_ PerlIO_list_t *list, PerlIO_funcs *funcs, SV *arg) { dVAR; + PerlIO_pair_t *p; PERL_UNUSED_CONTEXT; - PerlIO_pair_t *p; if (list->cur >= list->len) { list->len += 8; if (list->array)