From b1d49502dd3260c58cf6d13983973f71d73568ac Mon Sep 17 00:00:00 2001 From: Steve Dower Date: Thu, 23 Mar 2023 20:24:25 +0000 Subject: [PATCH] gh-99726: Fix order of recently added fields for FILE_STAT_BASIC_INFORMATION --- Include/internal/pycore_fileutils_windows.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Include/internal/pycore_fileutils_windows.h b/Include/internal/pycore_fileutils_windows.h index 44874903b092f3..9bc7feb8cecd01 100644 --- a/Include/internal/pycore_fileutils_windows.h +++ b/Include/internal/pycore_fileutils_windows.h @@ -25,8 +25,8 @@ typedef struct _FILE_STAT_BASIC_INFORMATION { ULONG DeviceType; ULONG DeviceCharacteristics; ULONG Reserved; - FILE_ID_128 FileId128; LARGE_INTEGER VolumeSerialNumber; + FILE_ID_128 FileId128; } FILE_STAT_BASIC_INFORMATION; typedef enum _FILE_INFO_BY_NAME_CLASS {