From b99260bb32ea3d409a5e17ddb7cbe25124dec1ab Mon Sep 17 00:00:00 2001 From: Matthew Flatt Date: Thu, 3 Jul 2014 08:05:01 +0100 Subject: [PATCH] fix declaration for non-places, non+futures build --- racket/src/racket/src/thread.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/racket/src/racket/src/thread.c b/racket/src/racket/src/thread.c index 2b56ba6f16..180527a689 100644 --- a/racket/src/racket/src/thread.c +++ b/racket/src/racket/src/thread.c @@ -193,7 +193,7 @@ THREAD_LOCAL_DECL(static Scheme_Custodian *last_custodian); THREAD_LOCAL_DECL(static Scheme_Hash_Table *limited_custodians = NULL); READ_ONLY static Scheme_Object *initial_inspector; -THREAD_LOCAL_DECL(static Scheme_Custodian *initial_plumber); +THREAD_LOCAL_DECL(static Scheme_Plumber *initial_plumber); THREAD_LOCAL_DECL(Scheme_Config *initial_config);