Change 29553 by [EMAIL PROTECTED] on 2006/12/14 09:37:45
Silence a VC compiler warning
Affected files ...
... //depot/perl/op.c#860 edit
Differences ...
==== //depot/perl/op.c#860 (text) ====
Index: perl/op.c
--- perl/op.c#859~29548~ 2006-12-13 09:16:22.000000000 -0800
+++ perl/op.c 2006-12-14 01:37:45.000000000 -0800
@@ -4595,7 +4595,7 @@
LOOP *tmp;
NewOp(1234,tmp,1,LOOP);
Copy(loop,tmp,1,LISTOP);
- S_op_destroy(aTHX_ loop);
+ S_op_destroy(aTHX_ (OP*)loop);
loop = tmp;
}
#else
End of Patch.
