From: Steve Dower Date: Thu, 23 Mar 2023 23:27:46 +0000 (+0000) Subject: gh-99726: Fix order of recently added fields for FILE_STAT_BASIC_INFORMATION (GH... X-Git-Tag: v3.12.0a7~73 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=f1e3eeebc01941f9c25bca4d2fa6313cf5041cc4;p=thirdparty%2FPython%2Fcpython.git gh-99726: Fix order of recently added fields for FILE_STAT_BASIC_INFORMATION (GH-102976) --- diff --git a/Include/internal/pycore_fileutils_windows.h b/Include/internal/pycore_fileutils_windows.h index 44874903b092..9bc7feb8cecd 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 {