* Source/mframe.m (mframe_decode_return): Change return struct

to fixed size to avoid gcc bug.


git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@21351 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Adam Fedor 2005-06-24 16:56:45 +00:00
parent 5df69742e7
commit 16bc77d69e
2 changed files with 6 additions and 1 deletions

View file

@ -1,3 +1,8 @@
2005-06-23 Adam Fedor <fedor@gnu.org>
* Source/mframe.m (mframe_decode_return): Change return struct
to fixed size to avoid gcc bug.
2005-06-23 Richard Frith-Macdonald <rfm@gnu.org>
* Headers/Foundation/NSObject.h:

View file

@ -1702,7 +1702,7 @@ mframe_decode_return (const char *type, void* buffer, void* retframe)
case _C_UNION_B:
{
typedef struct {
char val[size];
char val[4];
} block;
inline block retframe_block(void *rframe)
{