[svn:parrot] r39765 - trunk/include/parrot

petdance at svn.parrot.org petdance at svn.parrot.org
Thu Jun 25 04:30:45 UTC 2009


Author: petdance
Date: Thu Jun 25 04:30:44 2009
New Revision: 39765
URL: https://trac.parrot.org/parrot/changeset/39765

Log:
made a change to Stack_cleanup_method to match the function pointer in the struct

Modified:
   trunk/include/parrot/stacks.h

Modified: trunk/include/parrot/stacks.h
==============================================================================
--- trunk/include/parrot/stacks.h	Thu Jun 25 01:16:28 2009	(r39764)
+++ trunk/include/parrot/stacks.h	Thu Jun 25 04:30:44 2009	(r39765)
@@ -37,7 +37,7 @@
 /* #define STACK_ITEMSIZE(chunk) PObj_buflen(chunk) */
 
 
-typedef void (*Stack_cleanup_method)(Interp*, Stack_Entry_t *);
+typedef void (*Stack_cleanup_method)(PARROT_INTERP, ARGIN(struct Stack_Entry *));
 
 #define STACK_CLEANUP_NULL ((Stack_cleanup_method)NULLfunc)
 


More information about the parrot-commits mailing list