From: Nicholas Clark Date: Wed, 24 Jan 2007 18:44:51 +0000 (+0000) Subject: Wrap the macro arguments for ck_proto in (). X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=46471bde41ad0777edf7b89818df6730e8b55c20;p=p5sagit%2Fp5-mst-13.2.git Wrap the macro arguments for ck_proto in (). p4raw-id: //depot/perl@29954 --- diff --git a/op.h b/op.h index d8c5478..746e635 100644 --- a/op.h +++ b/op.h @@ -578,7 +578,8 @@ struct loop { /* no longer used anywhere in core */ #ifndef PERL_CORE -#define cv_ckproto(cv, gv, p) cv_ckproto_len(cv, gv, p, p ? strlen(p) : 0) +#define cv_ckproto(cv, gv, p) \ + cv_ckproto_len((cv), (gv), (p), (p) ? strlen(p) : 0) #endif #ifdef USE_REENTRANT_API