In perl.git, the branch blead has been updated <http://perl5.git.perl.org/perl.git/commitdiff/647688d88b9d452552ce64abafeef295a3c44d99?hp=6d95bdddee99a8006810ea29bbbfbb799bc8c6fd>
- Log ----------------------------------------------------------------- commit 647688d88b9d452552ce64abafeef295a3c44d99 Author: Craig A. Berry <[email protected]> Date: Fri Jun 8 17:28:00 2012 -0500 cop_stashoff is an integer, not a pointer. Fix for compiler warning introduced by d4d03940c58. ----------------------------------------------------------------------- Summary of changes: op.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/op.c b/op.c index bc6df04..34b1097 100644 --- a/op.c +++ b/op.c @@ -10053,7 +10053,7 @@ Perl_rpeep(pTHX_ register OP *o) firstcop->cop_hints_hash = secondcop->cop_hints_hash; #ifdef USE_ITHREADS - secondcop->cop_stashoff = NULL; + secondcop->cop_stashoff = 0; secondcop->cop_file = NULL; #else secondcop->cop_stash = NULL; -- Perl5 Master Repository
