mirror of
https://github.com/gnustep/libs-base.git
synced 2025-04-22 16:33:29 +00:00
indirection fix
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@9647 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
3768ec33c4
commit
c0a04507c3
2 changed files with 7 additions and 2 deletions
|
@ -1,3 +1,8 @@
|
|||
2001-04-20 Richard Frith-Macdonald <rfm@gnu.org>
|
||||
|
||||
* Source/NSInvocation.m: _get_arg() indirection fix suggested by
|
||||
Michael Scheibler.
|
||||
|
||||
2001-04-20 Nicola Pero <n.pero@mi.flashnet.it>
|
||||
|
||||
* Source/NSFileManager.m (NSDirectoryEnumerator): Rewritten to be
|
||||
|
|
|
@ -81,10 +81,10 @@ _arg_addr(NSInvocation *inv, int index)
|
|||
}
|
||||
|
||||
#else
|
||||
static inline void *
|
||||
static inline void
|
||||
_get_arg(NSInvocation *inv, int index, void *buffer)
|
||||
{
|
||||
mframe_get_arg(inv->_argframe, &inv->_info[index+1], &buffer);
|
||||
mframe_get_arg(inv->_argframe, &inv->_info[index+1], buffer);
|
||||
}
|
||||
|
||||
static inline void
|
||||
|
|
Loading…
Reference in a new issue