From 7a232c68d6aba8b610119b1bf0575c7860f3d08a Mon Sep 17 00:00:00 2001 From: theraven Date: Tue, 9 Oct 2012 21:39:33 +0000 Subject: [PATCH] Fix typo in .cxx_construct. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Reported by Luboš Doležel! --- runtime.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/runtime.c b/runtime.c index 627be9a..5160855 100644 --- a/runtime.c +++ b/runtime.c @@ -52,7 +52,7 @@ static void call_cxx_construct_for_class(Class cls, id obj) static SEL cxx_construct; if (NULL == cxx_construct) { - cxx_construct = sel_registerName(".cxx_contruct"); + cxx_construct = sel_registerName(".cxx_construct"); } struct objc_slot *slot = objc_get_slot(cls, cxx_construct); if (NULL != slot)