mirror of
https://github.com/gnustep/libs-base.git
synced 2025-05-31 16:50:58 +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
c8178cf4f8
commit
50cc142ab4
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…
Add table
Add a link
Reference in a new issue