summaryrefslogtreecommitdiff
path: root/thread_local_alloc.c
diff options
context:
space:
mode:
authorIvan Maidanski <ivmai@mail.ru>2018-02-28 23:16:36 +0300
committerIvan Maidanski <ivmai@mail.ru>2018-02-28 23:16:36 +0300
commit60d9632aa467c7ab1bffe2d053874901bef090c3 (patch)
tree20d95666f14793d0813c7dce7021fa592562e865 /thread_local_alloc.c
parentdafe71bca00384b4647700635f8321885b3cf100 (diff)
downloadbdwgc-60d9632aa467c7ab1bffe2d053874901bef090c3.tar.gz
Fix include gc_gcj.h in thread_local_alloc.c
The #include for the public GC headers should not contain "include/" prefix. * thread_local_alloc.c [GC_GCJ_SUPPORT]: Include "gc_gcj.h" instead of "include/gc_gcj.h".
Diffstat (limited to 'thread_local_alloc.c')
-rw-r--r--thread_local_alloc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/thread_local_alloc.c b/thread_local_alloc.c
index 66ea876a..92ae9d8e 100644
--- a/thread_local_alloc.c
+++ b/thread_local_alloc.c
@@ -191,7 +191,7 @@ GC_API GC_ATTR_MALLOC void * GC_CALL GC_malloc_kind(size_t bytes, int knd)
#ifdef GC_GCJ_SUPPORT
-# include "include/gc_gcj.h"
+# include "gc_gcj.h"
/* Gcj-style allocation without locks is extremely tricky. The */
/* fundamental issue is that we may end up marking a free list, which */