diff options
Diffstat (limited to 'src/libexpr/eval-inline.hh')
-rw-r--r-- | src/libexpr/eval-inline.hh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libexpr/eval-inline.hh b/src/libexpr/eval-inline.hh index ad172c37c..c27116e3b 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 |