Skip to content

Commit

Permalink
One more Win32 compilation clean-up (for when using -DDEBUGGING)
Browse files Browse the repository at this point in the history
p4raw-id: //depot/perl@24109
  • Loading branch information
Steve Hay authored and Steve Hay committed Mar 31, 2005
1 parent 575fbe1 commit c008732
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions sv.c
Expand Up @@ -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;
Expand Down Expand Up @@ -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;
Expand Down

0 comments on commit c008732

Please sign in to comment.