Not that I'd understand the problem GCC4 has with that while GCC2 doesn't care,
but this fixes the GCC4 build again, without breaking the function. +alphabranch git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@32772 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
parent
77093be11a
commit
fa1b1031d2
@ -521,13 +521,13 @@ MessageAdapter::_UnflattenR5Message(uint32 format, BMessage *into,
|
||||
|
||||
header->what = into->what = r5header.what;
|
||||
if (r5header.flags & R5_MESSAGE_FLAG_INCLUDE_TARGET)
|
||||
reader(header->target);
|
||||
reader(&header->target, sizeof(header->target));
|
||||
|
||||
if (r5header.flags & R5_MESSAGE_FLAG_INCLUDE_REPLY) {
|
||||
// reply info
|
||||
reader(header->reply_port);
|
||||
reader(header->reply_target);
|
||||
reader(header->reply_team);
|
||||
reader(&header->reply_port, sizeof(header->reply_port));
|
||||
reader(&header->reply_target, sizeof(header->reply_target));
|
||||
reader(&header->reply_team, sizeof(header->reply_team));
|
||||
|
||||
// big flags
|
||||
uint8 bigFlag;
|
||||
|
Loading…
Reference in New Issue
Block a user