From 885d7030796793baa777d4f5c97fcc57a86dab4f Mon Sep 17 00:00:00 2001 From: David Chisnall Date: Mon, 7 Jun 2010 00:27:21 +0000 Subject: [PATCH] Correct conditional macro. git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@30592 72102866-910b-0410-8b05-ffd578937521 --- Source/NSThread.m | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/NSThread.m b/Source/NSThread.m index fb90966b9..a5ff4ca8d 100644 --- a/Source/NSThread.m +++ b/Source/NSThread.m @@ -567,7 +567,7 @@ unregisterActiveThread(NSThread *thread) * if we have become multi-threaded due to a call to the runtime directly * rather than via the NSThread class. */ -#if defined(__GNUSTEP_RUNTIME__) || defined(__NEXT_RUNTIME__) +#if defined(__GNUSTEP_RUNTIME__) || defined(NeXT_RUNTIME) gnustep_base_thread_callback(); #else objc_set_thread_callback(gnustep_base_thread_callback);