ntdll: Don't change packing of fd cache entries.

Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
Alexandre Julliard 2017-11-02 16:59:11 +01:00
parent 18fbca7090
commit 5996398360
1 changed files with 0 additions and 2 deletions

View File

@ -808,7 +808,6 @@ static int receive_fd( obj_handle_t *handle )
/***********************************************************************/
/* fd cache support */
#include "pshpack1.h"
union fd_cache_entry
{
LONG64 data;
@ -820,7 +819,6 @@ union fd_cache_entry
unsigned int options : 24;
} s;
};
#include "poppack.h"
C_ASSERT( sizeof(union fd_cache_entry) == sizeof(LONG64) );