[svn:parrot] r44238 - branches/sys_mem_reduce/src/gc

mikehh at svn.parrot.org mikehh at svn.parrot.org
Sat Feb 20 13:26:00 UTC 2010


Author: mikehh
Date: Sat Feb 20 13:25:59 2010
New Revision: 44238
URL: https://trac.parrot.org/parrot/changeset/44238

Log:
fix Correctly indented preprocessor directives

Modified:
   branches/sys_mem_reduce/src/gc/alloc_memory.c

Modified: branches/sys_mem_reduce/src/gc/alloc_memory.c
==============================================================================
--- branches/sys_mem_reduce/src/gc/alloc_memory.c	Sat Feb 20 13:21:00 2010	(r44237)
+++ branches/sys_mem_reduce/src/gc/alloc_memory.c	Sat Feb 20 13:25:59 2010	(r44238)
@@ -1,5 +1,5 @@
 /*
-Copyright (C) 2001-2009, Parrot Foundation.
+Copyright (C) 2001-2010, Parrot Foundation.
 $Id$
 
 =head1 NAME
@@ -282,15 +282,15 @@
 {
     ASSERT_ARGS(mem__internal_realloc_zeroed)
     void * const ptr = realloc(from, size);
-#  ifdef DETAIL_MEMORY_DEBUG
+#ifdef DETAIL_MEMORY_DEBUG
     fprintf(stderr, "internal free of %p (realloc -- %i bytes) (%s/%d)\n",
             from, size, file, line);
     fprintf(stderr, "Internal malloc %i at %p (%s/%d)\n",
             size, ptr, file, line);
-#  else
+#else
     UNUSED(file);
     UNUSED(line);
-#  endif
+#endif
     if (!ptr)
         PANIC_OUT_OF_MEM(size);
     if (size > old_size)


More information about the parrot-commits mailing list