From 408973f7a885b046814bbed4ea6a345b9f52cfa6 Mon Sep 17 00:00:00 2001 From: mlankhorst Date: Thu, 3 Jul 2008 00:09:31 -0700 Subject: [PATCH] server: Make padding correct for 64 bits systems This is the lowest amount of longs I could find that satisfies the assertion in the server --- include/wine/server_protocol.h | 3 ++- 1 files changed, 2 insertions(+), 1 deletions(-) diff --git a/include/wine/server_protocol.h b/include/wine/server_protocol.h index c5a8a5e..3db2ea3 100644 --- a/include/wine/server_protocol.h +++ b/include/wine/server_protocol.h @@ -41,7 +41,8 @@ struct reply_header struct request_max_size { - int pad[16]; + int pad1[11]; + long pad2[5]; }; #define FIRST_USER_HANDLE 0x0020 -- 1.5.6.5