From b11779dc19ba27a75cf3a1c6892006d90eaa3e9f Mon Sep 17 00:00:00 2001 From: David Chisnall Date: Fri, 1 Jan 2016 12:29:50 +0000 Subject: [PATCH] Fix objc_msgSend test with new names for slot structures. --- Test/objc_msgSend.m | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Test/objc_msgSend.m b/Test/objc_msgSend.m index 612734d..e075105 100644 --- a/Test/objc_msgSend.m +++ b/Test/objc_msgSend.m @@ -164,8 +164,8 @@ IMP forward(id o, SEL s) return (IMP)fwdMany; } -static struct objc_slot slot; -struct objc_slot *forward_slot(id o, SEL s) +static struct objc_slot_v1 slot; +struct objc_slot_v1 *forward_slot(id o, SEL s) { slot.method = (IMP)fwd; return &slot;