Fixes bonaza.

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@4725 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
michael 1999-08-19 23:30:03 +00:00
parent 5c9720878c
commit a45234d75f
2 changed files with 7 additions and 2 deletions

View file

@ -1,3 +1,8 @@
1999-08-19 Michael Hanni <mhanni@sprintmail.com>
* Source/NSObjCRuntime.m: patch from Tim Bissell to help in
debugging. (show which non-existant ivar you wanted.)
Tue Aug 3 12:36:54 1999 Adam Fedor <fedor@ultra.doc.com> Tue Aug 3 12:36:54 1999 Adam Fedor <fedor@ultra.doc.com>
* Source/NSInvocation.m (-initWithTarget:selector:): Hack for * Source/NSInvocation.m (-initWithTarget:selector:): Hack for

View file

@ -105,7 +105,7 @@ GSGetInstanceVariable(id obj, NSString *iVarName, void *data)
} }
if (ivar == 0) if (ivar == 0)
{ {
NSLog(@"Attempt to get non-existent ivar"); NSLog(@"Attempt to get non-existent ivar '%s'", name);
return NO; return NO;
} }
@ -148,7 +148,7 @@ GSSetInstanceVariable(id obj, NSString *iVarName, const void *data)
} }
if (ivar == 0) if (ivar == 0)
{ {
NSLog(@"Attempt to set non-existent ivar"); NSLog(@"Attempt to set non-existent ivar '%s'", name);
return NO; return NO;
} }