Change 27337 by [EMAIL PROTECTED] on 2006/02/27 12:21:14
Fix code-before-declaration error (under VC++) from change #27334
Affected files ...
... //depot/perl/perlio.c#307 edit
Differences ...
==== //depot/perl/perlio.c#307 (text) ====
Index: perl/perlio.c
--- perl/perlio.c#306~27334~ 2006-02-27 03:06:30.000000000 -0800
+++ perl/perlio.c 2006-02-27 04:21:14.000000000 -0800
@@ -601,9 +601,9 @@
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)
End of Patch.