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>
feature/deterministic
Jacek Caban 2020-04-20 20:20:30 +02:00 committed by Alexandre Julliard
parent 58b129ebb0
commit bffd57d1d2
1 changed files with 1 additions and 1 deletions

View File

@ -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;