Author: petdance
Date: Thu Dec 25 22:02:46 2008
New Revision: 34365

Modified:
   trunk/include/parrot/stacks.h
   trunk/src/stacks.c

Log:
SHIMmed an argument

Modified: trunk/include/parrot/stacks.h
==============================================================================
--- trunk/include/parrot/stacks.h       (original)
+++ trunk/include/parrot/stacks.h       Thu Dec 25 22:02:46 2008
@@ -99,7 +99,7 @@
 PARROT_EXPORT
 PARROT_CAN_RETURN_NULL
 PARROT_WARN_UNUSED_RESULT
-Stack_Entry_t * stack_entry(PARROT_INTERP,
+Stack_Entry_t * stack_entry(SHIM_INTERP,
     ARGIN(Stack_Chunk_t *stack),
     INTVAL depth)
         __attribute__nonnull__(1)

Modified: trunk/src/stacks.c
==============================================================================
--- trunk/src/stacks.c  (original)
+++ trunk/src/stacks.c  Thu Dec 25 22:02:46 2008
@@ -198,7 +198,7 @@
 PARROT_CAN_RETURN_NULL
 PARROT_WARN_UNUSED_RESULT
 Stack_Entry_t *
-stack_entry(PARROT_INTERP, ARGIN(Stack_Chunk_t *stack), INTVAL depth)
+stack_entry(SHIM_INTERP, ARGIN(Stack_Chunk_t *stack), INTVAL depth)
 {
     Stack_Chunk_t *chunk;
     size_t         offset = (size_t)depth;

Reply via email to