Author: infinoid
Date: Tue Mar 25 19:33:35 2008
New Revision: 26551
Modified:
trunk/src/inter_call.c
Log:
[src] "indexes" argument to Parrot_init_arg_indexes_and_sig_pmc should be
NULLOK.
This patch inspired by RT #46597. bgeron++
Modified: trunk/src/inter_call.c
==============================================================================
--- trunk/src/inter_call.c (original)
+++ trunk/src/inter_call.c Tue Mar 25 19:33:35 2008
@@ -242,7 +242,7 @@
PARROT_API
int
Parrot_init_arg_indexes_and_sig_pmc(SHIM_INTERP, ARGIN(parrot_context_t *ctx),
- ARGIN(opcode_t *indexes), ARGIN_NULLOK(PMC* sig_pmc),
+ ARGIN_NULLOK(opcode_t *indexes), ARGIN_NULLOK(PMC* sig_pmc),
ARGMOD(call_state_item *sti))
{
if (!sig_pmc && indexes) {