From a6e65cea045f5579898cece16856bfa157937855 Mon Sep 17 00:00:00 2001 From: Niels Grewe Date: Mon, 28 Dec 2015 10:49:24 +0000 Subject: [PATCH] Fix typo in test function --- Test/objc_msgSend.m | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Test/objc_msgSend.m b/Test/objc_msgSend.m index 4dcb95e..612734d 100644 --- a/Test/objc_msgSend.m +++ b/Test/objc_msgSend.m @@ -165,7 +165,7 @@ IMP forward(id o, SEL s) } static struct objc_slot slot; -struct objc_slot *forwardslot(id o, SEL s) +struct objc_slot *forward_slot(id o, SEL s) { slot.method = (IMP)fwd; return &slot;