From ca0270c4db0273594a19a3d140c7330546a185fe Mon Sep 17 00:00:00 2001 From: Jarkko Hietaniemi Date: Sat, 29 Apr 2006 14:13:24 +0300 Subject: more -ansi -pedantic cleanliness Message-ID: <44532024.9070303@gmail.com> p4raw-id: //depot/perl@28010 --- cop.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'cop.h') diff --git a/cop.h b/cop.h index a6749a06fa..5b6014b65e 100644 --- a/cop.h +++ b/cop.h @@ -100,7 +100,7 @@ typedef struct jmpenv JMPENV; #define JMPENV_PUSH(v) \ STMT_START { \ DEBUG_l(Perl_deb(aTHX_ "Setting up jumplevel %p, was %p\n", \ - &cur_env, PL_top_env)); \ + (void*)&cur_env, (void*)PL_top_env)); \ cur_env.je_prev = PL_top_env; \ OP_REG_TO_MEM; \ cur_env.je_ret = PerlProc_setjmp(cur_env.je_buf, SCOPE_SAVES_SIGNAL_MASK); \ @@ -113,7 +113,7 @@ typedef struct jmpenv JMPENV; #define JMPENV_POP \ STMT_START { \ DEBUG_l(Perl_deb(aTHX_ "popping jumplevel was %p, now %p\n", \ - PL_top_env, cur_env.je_prev)); \ + (void*)PL_top_env, (void*)cur_env.je_prev)); \ PL_top_env = cur_env.je_prev; \ } STMT_END -- cgit v1.2.1