about summary refs log tree commit diff
path: root/src/libexpr/eval-inline.hh
diff options
context:
space:
mode:
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