From f1e3eeebc01941f9c25bca4d2fa6313cf5041cc4 Mon Sep 17 00:00:00 2001 From: Steve Dower Date: Thu, 23 Mar 2023 23:27:46 +0000 Subject: gh-99726: Fix order of recently added fields for FILE_STAT_BASIC_INFORMATION (GH-102976) --- 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 4487490..9bc7feb 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 { -- cgit v0.12