guile-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Guile-commits] GNU Guile branch, stable-2.0, updated. v2.0.2-179-g8fc5e


From: Ludovic Courtès
Subject: [Guile-commits] GNU Guile branch, stable-2.0, updated. v2.0.2-179-g8fc5ef7
Date: Sat, 22 Oct 2011 11:30:13 +0000

This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "GNU Guile".

http://git.savannah.gnu.org/cgit/guile.git/commit/?id=8fc5ef7df87f9f6da33af0cb3c79f354c0ccd708

The branch, stable-2.0 has been updated
       via  8fc5ef7df87f9f6da33af0cb3c79f354c0ccd708 (commit)
      from  80fc43f2cf12c7a21a0533cc84e91059ef9d8170 (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
commit 8fc5ef7df87f9f6da33af0cb3c79f354c0ccd708
Author: Bake Timmons <address@hidden>
Date:   Sat Oct 22 13:28:53 2011 +0200

    Fix compilation with `--enable-debug-malloc'.
    
    * libguile/gc-malloc.c (scm_gc_register_collectable_memory): Add the
      missing second argument in the call to scm_malloc_register.

-----------------------------------------------------------------------

Summary of changes:
 libguile/gc-malloc.c |    5 +++--
 1 files changed, 3 insertions(+), 2 deletions(-)

diff --git a/libguile/gc-malloc.c b/libguile/gc-malloc.c
index 4f77f65..c64ea2f 100644
--- a/libguile/gc-malloc.c
+++ b/libguile/gc-malloc.c
@@ -1,4 +1,5 @@
-/* Copyright (C) 1995,1996,1997,1998,1999,2000,2001, 2002, 2003, 2004, 2006, 
2008, 2009, 2010 Free Software Foundation, Inc.
+/* Copyright (C) 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003,
+ *   2004, 2006, 2008, 2009, 2010, 2011 Free Software Foundation, Inc.
  *
  * This library is free software; you can redistribute it and/or
  * modify it under the terms of the GNU Lesser General Public License
@@ -154,7 +155,7 @@ scm_gc_register_collectable_memory (void *mem, size_t size, 
const char *what)
   /* Nothing to do.  */
 #ifdef GUILE_DEBUG_MALLOC
   if (mem)
-    scm_malloc_register (mem);
+    scm_malloc_register (mem, what);
 #endif
 }
 


hooks/post-receive
-- 
GNU Guile



reply via email to

[Prev in Thread] Current Thread [Next in Thread]