mirror of
https://github.com/gnustep/libs-base.git
synced 2025-04-23 09:04:13 +00:00
* 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:
parent
5df69742e7
commit
16bc77d69e
2 changed files with 6 additions and 1 deletions
|
@ -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:
|
||||
|
|
|
@ -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)
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue