about summary refs log tree commit diff
path: root/src/libexpr/eval-inline.hh
diff options
context:
space:
mode:
authorEelco Dolstra <edolstra@gmail.com>2018-06-12T14·16+0200
committerEelco Dolstra <edolstra@gmail.com>2018-06-12T15·49+0200
commitc905d8b0a84877d3cab10d4a8b8ad81895a6500e (patch)
tree032ad5ec6ca98b2a904892b979a7c252e3d3e4c7 /src/libexpr/eval-inline.hh
parent455d1f01d041baf58abc3c9baf5e59ee054d9c9b (diff)
GC_malloc -> GC_MALLOC
This makes it possible to build with -DGC_DEBUG.
Diffstat (limited to 'src/libexpr/eval-inline.hh')
-rw-r--r--src/libexpr/eval-inline.hh2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libexpr/eval-inline.hh b/src/libexpr/eval-inline.hh
index ad172c37c7b9..c27116e3b448 100644
--- a/src/libexpr/eval-inline.hh
+++ b/src/libexpr/eval-inline.hh
@@ -83,7 +83,7 @@ inline void * allocBytes(size_t n)
 {
     void * p;
 #if HAVE_BOEHMGC
-    p = GC_malloc(n);
+    p = GC_MALLOC(n);
 #else
     p = calloc(n, 1);
 #endif