kernel32/tests: Use DECLSPEC_ALIGN in MSVC compatible way.
Signed-off-by: Jacek Caban <jacek@codeweavers.com> Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
parent
58b129ebb0
commit
bffd57d1d2
|
@ -1523,7 +1523,7 @@ static void test_mounted_folder(void)
|
|||
|
||||
static void test_GetVolumeInformationByHandle(void)
|
||||
{
|
||||
char buffer[50] DECLSPEC_ALIGN(8);
|
||||
char DECLSPEC_ALIGN(8) buffer[50];
|
||||
FILE_FS_ATTRIBUTE_INFORMATION *attr_info = (void *)buffer;
|
||||
FILE_FS_VOLUME_INFORMATION *volume_info = (void *)buffer;
|
||||
DWORD serial, filename_len, flags;
|
||||
|
|
Loading…
Reference in New Issue