From 8e3dc5f661b6543703226891314f84a6a01d495e Mon Sep 17 00:00:00 2001 From: Richard Kenner Date: Tue, 16 May 1995 07:09:02 -0400 Subject: [PATCH] (__objc_init_install_dtable): Fix misspelling in name of local label `already_initialized'. From-SVN: r9708 --- gcc/objc/sendmsg.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/gcc/objc/sendmsg.c b/gcc/objc/sendmsg.c index 9f52c8d7f23..90dd4c61650 100644 --- a/gcc/objc/sendmsg.c +++ b/gcc/objc/sendmsg.c @@ -161,7 +161,7 @@ void __objc_init_dispatch_tables() static void __objc_init_install_dtable(id receiver, SEL op) { - __label__ allready_initialized; + __label__ already_initialized; IMP imp; void* args; void* result; @@ -169,7 +169,7 @@ static void __objc_init_install_dtable(id receiver, SEL op) /* This may happen, if the programmer has taken the address of a method before the dtable was initialized... too bad for him! */ if(receiver->class_pointer->dtable != __objc_uninstalled_dtable) - goto allready_initialized; + goto already_initialized; if(CLS_ISCLASS(receiver->class_pointer)) { @@ -198,7 +198,7 @@ static void __objc_init_install_dtable(id receiver, SEL op) CLS_SETINITIALIZED((Class)receiver); } -allready_initialized: +already_initialized: /* Get real method for this in newly installed dtable */ imp = get_imp(receiver->class_pointer, op); -- 2.30.2