summaryrefslogtreecommitdiff
path: root/pp.c
diff options
context:
space:
mode:
Diffstat (limited to 'pp.c')
-rw-r--r--pp.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/pp.c b/pp.c
index 8649bec3cd..a32d0c08c6 100644
--- a/pp.c
+++ b/pp.c
@@ -438,7 +438,8 @@ PP(pp_prototype)
if (SvPOK(TOPs) && SvCUR(TOPs) >= 7) {
const char * s = SvPVX_const(TOPs);
if (strnEQ(s, "CORE::", 6)) {
- SV *const sv = core_prototype(NULL, s + 6, SvCUR(TOPs) - 6, 1);
+ SV *const sv =
+ core_prototype(NULL, s + 6, SvCUR(TOPs) - 6, NULL, 1);
if (sv) ret = sv;
goto set;
}