summaryrefslogtreecommitdiff
path: root/perlio.c
diff options
context:
space:
mode:
authorSteve Hay <SteveHay@planit.com>2006-02-27 12:21:14 +0000
committerSteve Hay <SteveHay@planit.com>2006-02-27 12:21:14 +0000
commit334e202ef11738e690e868e859b7602254641974 (patch)
tree0605ef4706c12166801434a0f8c76b2552ca0eb3 /perlio.c
parent3b6733bfa57f98be8915f7c25b14180d042dd456 (diff)
downloadperl-334e202ef11738e690e868e859b7602254641974.tar.gz
Fix code-before-declaration error (under VC++) from change #27334
p4raw-link: @27334 on //depot/perl: b37c2d43c8bccbefe3985273e9661833102148d0 p4raw-id: //depot/perl@27337
Diffstat (limited to 'perlio.c')
-rw-r--r--perlio.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/perlio.c b/perlio.c
index 2c352f13b8..0cb4922f68 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)