[svn:parrot] r41829 - branches/pcc_reapply/src
mikehh at svn.parrot.org
mikehh at svn.parrot.org
Mon Oct 12 03:13:37 UTC 2009
Author: mikehh
Date: Mon Oct 12 03:13:33 2009
New Revision: 41829
URL: https://trac.parrot.org/parrot/changeset/41829
Log:
codetest fix - space between C keyword and open parenthesis
Modified:
branches/pcc_reapply/src/extend.c
Modified: branches/pcc_reapply/src/extend.c
==============================================================================
--- branches/pcc_reapply/src/extend.c Sun Oct 11 21:08:57 2009 (r41828)
+++ branches/pcc_reapply/src/extend.c Mon Oct 12 03:13:33 2009 (r41829)
@@ -1056,7 +1056,7 @@
return_flags = pmc_new(interp, enum_class_ResizablePMCArray);
VTABLE_set_attr_str(interp, sig_object, return_flags_name, return_flags);
}
- switch(Parrot_str_indexed(interp, type, 0)) {
+ switch (Parrot_str_indexed(interp, type, 0)) {
case 'I': VTABLE_push_integer(interp, return_flags, PARROT_ARG_INTVAL); break;
case 'N': VTABLE_push_integer(interp, return_flags, PARROT_ARG_FLOATVAL); break;
case 'S': VTABLE_push_integer(interp, return_flags, PARROT_ARG_STRING); break;
More information about the parrot-commits
mailing list