ntdll: Don't change packing of fd cache entries.
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
parent
18fbca7090
commit
5996398360
|
@ -808,7 +808,6 @@ static int receive_fd( obj_handle_t *handle )
|
||||||
/***********************************************************************/
|
/***********************************************************************/
|
||||||
/* fd cache support */
|
/* fd cache support */
|
||||||
|
|
||||||
#include "pshpack1.h"
|
|
||||||
union fd_cache_entry
|
union fd_cache_entry
|
||||||
{
|
{
|
||||||
LONG64 data;
|
LONG64 data;
|
||||||
|
@ -820,7 +819,6 @@ union fd_cache_entry
|
||||||
unsigned int options : 24;
|
unsigned int options : 24;
|
||||||
} s;
|
} s;
|
||||||
};
|
};
|
||||||
#include "poppack.h"
|
|
||||||
|
|
||||||
C_ASSERT( sizeof(union fd_cache_entry) == sizeof(LONG64) );
|
C_ASSERT( sizeof(union fd_cache_entry) == sizeof(LONG64) );
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue