Author: paultcochrane
Date: Sat Mar 31 06:15:40 2007
New Revision: 17893
Modified:
trunk/src/inter_call.c
Log:
[src] Fixed parentheses as per coding standards
Patch courtesy of Shawn M Moore <sartak at gmail dot com>
Modified: trunk/src/inter_call.c
==============================================================================
--- trunk/src/inter_call.c (original)
+++ trunk/src/inter_call.c Sat Mar 31 06:15:40 2007
@@ -754,7 +754,7 @@
/* verify that a name exists */
INTVAL sig = st->dest.sig = SIG_ITEM(st->dest.u.op.signature, i);
- if(sig & PARROT_ARG_NAME)
+ if (sig & PARROT_ARG_NAME)
{
INTVAL arg_sig;
int last_name_pos;
@@ -772,7 +772,7 @@
/* if this named arg is already filled, continue*/
if (st->named_done & (1 << n_named)) {
arg_sig = st->dest.sig = SIG_ITEM(st->dest.u.op.signature,
i+1);
- if(arg_sig & PARROT_ARG_OPT_FLAG)
+ if (arg_sig & PARROT_ARG_OPT_FLAG)
i++; /* skip associated opt flag arg as well */
continue;
}
@@ -782,7 +782,7 @@
store_arg(st, idx);
arg_sig = st->dest.sig = SIG_ITEM(st->dest.u.op.signature,
i+1);
- if(arg_sig & PARROT_ARG_OPT_FLAG) {
+ if (arg_sig & PARROT_ARG_OPT_FLAG) {
i++;
idx = st->dest.u.op.pc[i];
CTX_REG_INT(st->dest.ctx, idx) = 0;