[svn:parrot] r40589 - trunk/src/pmc

mikehh at svn.parrot.org mikehh at svn.parrot.org
Sun Aug 16 10:36:31 UTC 2009


Author: mikehh
Date: Sun Aug 16 10:36:30 2009
New Revision: 40589
URL: https://trac.parrot.org/parrot/changeset/40589

Log:
fix codetest failure - line length in src/pmc/nci.pmc

Modified:
   trunk/src/pmc/nci.pmc

Modified: trunk/src/pmc/nci.pmc
==============================================================================
--- trunk/src/pmc/nci.pmc	Sun Aug 16 09:00:17 2009	(r40588)
+++ trunk/src/pmc/nci.pmc	Sun Aug 16 10:36:30 2009	(r40589)
@@ -21,8 +21,10 @@
 typedef INTVAL (*nci_sub_t)(PARROT_INTERP, PMC *);
 typedef INTVAL (*nci_jit_sub_t)(PARROT_INTERP, PMC *, char *);
 
-void pcc_params(PARROT_INTERP, STRING *sig, Parrot_NCI_attributes * const nci_info, size_t sig_length);
-void pcc_params(PARROT_INTERP, STRING *sig, Parrot_NCI_attributes * const nci_info, size_t sig_length) {
+void pcc_params(PARROT_INTERP, STRING *sig, Parrot_NCI_attributes * const nci_info,
+                size_t sig_length);
+void pcc_params(PARROT_INTERP, STRING *sig, Parrot_NCI_attributes * const nci_info,
+                size_t sig_length) {
     char    param_buf[8] = { 0, 0, 0, 0, 0, 0, 0, 0 };
     char   *param_sig    = sig_length <= 7
                          ? param_buf


More information about the parrot-commits mailing list