[svn:parrot] r36977 - trunk/t/src

NotFound at svn.parrot.org NotFound at svn.parrot.org
Tue Feb 24 20:17:06 UTC 2009


Author: NotFound
Date: Tue Feb 24 20:17:05 2009
New Revision: 36977
URL: https://trac.parrot.org/parrot/changeset/36977

Log:
[t] fix a nci signature in embed.t

Modified:
   trunk/t/src/embed.t

Modified: trunk/t/src/embed.t
==============================================================================
--- trunk/t/src/embed.t	Tue Feb 24 20:07:14 2009	(r36976)
+++ trunk/t/src/embed.t	Tue Feb 24 20:17:05 2009	(r36977)
@@ -280,7 +280,7 @@
     rootns = Parrot_get_root_namespace(interp);
     parrotname = Parrot_new_string(interp, "parrot", 6, (const char *)NULL, 0);
     parrotns = Parrot_PMC_get_pmc_strkey(interp, rootns, parrotname);
-    hellosub = Parrot_sub_new_from_c_func(interp, (void (*)())& hello, "v");
+    hellosub = Parrot_sub_new_from_c_func(interp, (void (*)())& hello, "vJ");
     helloname = Parrot_new_string(interp, "hello", 5, (const char *)NULL, 0);
     Parrot_PMC_set_pmc_strkey(interp, parrotns, helloname, hellosub);
 


More information about the parrot-commits mailing list