summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSteve Dower <steve.dower@python.org>2023-03-23 23:27:46 (GMT)
committerGitHub <noreply@github.com>2023-03-23 23:27:46 (GMT)
commitf1e3eeebc01941f9c25bca4d2fa6313cf5041cc4 (patch)
tree6e32e8988f5d4852158d0674db18d865d2afee5c
parent0444ae24875489dc290d8efdb9ee6440ee60dac8 (diff)
downloadcpython-f1e3eeebc01941f9c25bca4d2fa6313cf5041cc4.zip
cpython-f1e3eeebc01941f9c25bca4d2fa6313cf5041cc4.tar.gz
cpython-f1e3eeebc01941f9c25bca4d2fa6313cf5041cc4.tar.bz2
gh-99726: Fix order of recently added fields for FILE_STAT_BASIC_INFORMATION (GH-102976)
-rw-r--r--Include/internal/pycore_fileutils_windows.h2
1 files changed, 1 insertions, 1 deletions
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 {