From: Steve Hay Date: Thu, 31 Mar 2005 07:55:12 +0000 (+0000) Subject: One more Win32 compilation clean-up (for when using -DDEBUGGING) X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=c008732bfe878991e04a1364a130be250e4ea1db;p=p5sagit%2Fp5-mst-13.2.git One more Win32 compilation clean-up (for when using -DDEBUGGING) p4raw-id: //depot/perl@24109 --- diff --git a/sv.c b/sv.c index 51c9c74..73aed10 100644 --- a/sv.c +++ b/sv.c @@ -11583,7 +11583,7 @@ perl_clone_using(PerlInterpreter *proto_perl, UV flags, # ifdef DEBUGGING Poison(my_perl, 1, PerlInterpreter); PL_op = Nullop; - PL_curcop = Nullop; + PL_curcop = (COP *)Nullop; PL_markstack = 0; PL_scopestack = 0; PL_savestack = 0; @@ -11617,7 +11617,7 @@ perl_clone_using(PerlInterpreter *proto_perl, UV flags, # ifdef DEBUGGING Poison(my_perl, 1, PerlInterpreter); PL_op = Nullop; - PL_curcop = Nullop; + PL_curcop = (COP *)Nullop; PL_markstack = 0; PL_scopestack = 0; PL_savestack = 0;