diff options
author | Steve Hay <SteveHay@planit.com> | 2005-03-31 07:55:12 +0000 |
---|---|---|
committer | Steve Hay <SteveHay@planit.com> | 2005-03-31 07:55:12 +0000 |
commit | c008732bfe878991e04a1364a130be250e4ea1db (patch) | |
tree | 7db37a739283be1581f20d0388d6d77ecab3f4a4 /sv.c | |
parent | 575fbe19638bbb2c64232d56697c4e2bd450b1de (diff) | |
download | perl-c008732bfe878991e04a1364a130be250e4ea1db.tar.gz |
One more Win32 compilation clean-up (for when using -DDEBUGGING)
p4raw-id: //depot/perl@24109
Diffstat (limited to 'sv.c')
-rw-r--r-- | sv.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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; |