aboutsummaryrefslogtreecommitdiff
path: root/boehm-gc/include/private/gc_hdrs.h
diff options
context:
space:
mode:
Diffstat (limited to 'boehm-gc/include/private/gc_hdrs.h')
-rw-r--r--boehm-gc/include/private/gc_hdrs.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/boehm-gc/include/private/gc_hdrs.h b/boehm-gc/include/private/gc_hdrs.h
index dd615455f3b..96749ab1bf0 100644
--- a/boehm-gc/include/private/gc_hdrs.h
+++ b/boehm-gc/include/private/gc_hdrs.h
@@ -70,7 +70,7 @@ extern hdr * GC_invalid_header; /* header for an imaginary block */
#define ADVANCE(p, hhdr, source) \
{ \
hdr * new_hdr = GC_invalid_header; \
- p = GC_FIND_START(p, hhdr, &new_hdr, (word)source); \
+ p = GC_find_start(p, hhdr, &new_hdr); \
hhdr = new_hdr; \
}