changeset 51769:8f6662a00b7f

(mark_byte_stack): Update calls to mark_object.
author Stefan Monnier <monnier@iro.umontreal.ca>
date Sun, 06 Jul 2003 19:30:10 +0000
parents 31f2f6a2df06
children ad47aa3ee2d7
files src/bytecode.c
diffstat 1 files changed, 3 insertions(+), 3 deletions(-) [+]
line wrap: on
line diff
--- a/src/bytecode.c	Sun Jul 06 19:29:48 2003 +0000
+++ b/src/bytecode.c	Sun Jul 06 19:30:10 2003 +0000
@@ -292,19 +292,19 @@
       for (obj = stack->bottom; obj <= stack->top; ++obj)
 	if (!XMARKBIT (*obj))
 	  {
-	    mark_object (obj);
+	    mark_object (*obj);
 	    XMARK (*obj);
 	  }
 
       if (!XMARKBIT (stack->byte_string))
 	{
-          mark_object (&stack->byte_string);
+          mark_object (stack->byte_string);
 	  XMARK (stack->byte_string);
 	}
 
       if (!XMARKBIT (stack->constants))
 	{
-	  mark_object (&stack->constants);
+	  mark_object (stack->constants);
 	  XMARK (stack->constants);
 	}
     }