[svn:parrot] r39766 - trunk/src
petdance at svn.parrot.org
petdance at svn.parrot.org
Thu Jun 25 04:43:44 UTC 2009
Author: petdance
Date: Thu Jun 25 04:43:44 2009
New Revision: 39766
URL: https://trac.parrot.org/parrot/changeset/39766
Log:
consting a local var
Modified:
trunk/src/stacks.c
Modified: trunk/src/stacks.c
==============================================================================
--- trunk/src/stacks.c Thu Jun 25 04:30:44 2009 (r39765)
+++ trunk/src/stacks.c Thu Jun 25 04:43:44 2009 (r39766)
@@ -335,8 +335,8 @@
ARGOUT_NULLOK(void *where), Stack_entry_type type)
{
ASSERT_ARGS(stack_pop)
- Stack_Chunk_t *cur_chunk = *stack_p;
- Stack_Entry_t * const entry =
+ Stack_Chunk_t * const cur_chunk = *stack_p;
+ Stack_Entry_t * const entry =
(Stack_Entry_t *)stack_prepare_pop(interp, stack_p);
/* Types of 0 mean we don't care */
More information about the parrot-commits
mailing list