projects
/
platform
/
upstream
/
perl.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
1dc8ecb
)
Wrap the macro arguments for ck_proto in ().
author
Nicholas Clark
<nick@ccl4.org>
Wed, 24 Jan 2007 18:44:51 +0000
(18:44 +0000)
committer
Nicholas Clark
<nick@ccl4.org>
Wed, 24 Jan 2007 18:44:51 +0000
(18:44 +0000)
p4raw-id: //depot/perl@29954
op.h
patch
|
blob
|
history
diff --git
a/op.h
b/op.h
index
d8c5478
..
746e635
100644
(file)
--- 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