mirror of
https://github.com/gnustep/libs-base.git
synced 2025-04-22 16:33:29 +00:00
Minor debug output improvement
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@11761 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
a0f08d36d8
commit
59c444170d
2 changed files with 5 additions and 5 deletions
|
@ -6,6 +6,7 @@
|
|||
* Tools/GNUmakefile: Build autogsdoc documentation using autogsdoc.
|
||||
* Tools/autogsdoc.m: Fix minor dependency error.
|
||||
* Tools/gsdoc-0_6_7.dtd: Fix ivar support
|
||||
* Source/GSFFCallInvocation.m: minor debug output improvement.
|
||||
|
||||
2001-12-13 Adam Fedor <fedor@gnu.org>
|
||||
|
||||
|
|
|
@ -742,20 +742,19 @@ GSInvocationCallback (void *callback_data, va_alist args)
|
|||
}
|
||||
|
||||
obj = va_arg_ptr(args, id);
|
||||
selector = va_arg_ptr(args, SEL);
|
||||
|
||||
fwdInvMethod = gs_method_for_receiver_and_selector
|
||||
(obj, @selector (forwardInvocation:));
|
||||
|
||||
if (!fwdInvMethod)
|
||||
{
|
||||
NSCAssert1 (0, @"GSFFCallInvocation: Class '%s' does not respond"
|
||||
@" to forwardInvocation:",
|
||||
object_get_class_name (obj));
|
||||
NSCAssert2 (0, @"GSFFCallInvocation: Class '%s' does not respond"
|
||||
@" to forwardInvocation: for '%s'",
|
||||
object_get_class_name (obj), sel_get_name(selector));
|
||||
}
|
||||
|
||||
selector = va_arg_ptr(args, SEL);
|
||||
selector = gs_find_by_receiver_best_typed_sel (obj, selector);
|
||||
|
||||
sig = nil;
|
||||
|
||||
if (sel_get_type (selector))
|
||||
|
|
Loading…
Reference in a new issue