aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorHüseyin Açacak <huseyin@janeasystems.com>2025-02-10 13:09:55 +0300
committerSaúl Ibarra Corretgé <s@saghul.net>2025-02-10 12:32:57 +0100
commitabe59d6319973cbff0686f41869cf8ae50bab1d2 (patch)
tree4bf1067ba9e2e1bb6ea219ce4e23c070ebb57907 /src
parente399e00e7828a47a92f3a2a35ab56740b176bbe2 (diff)
downloadlibuv-abe59d6319973cbff0686f41869cf8ae50bab1d2.tar.gz
libuv-abe59d6319973cbff0686f41869cf8ae50bab1d2.zip
win: fix order of FILE_STAT_BASIC_INFORMATION struct fields
Diffstat (limited to 'src')
-rw-r--r--src/win/winapi.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/win/winapi.h b/src/win/winapi.h
index 47c34622..b9c9f1ab 100644
--- a/src/win/winapi.h
+++ b/src/win/winapi.h
@@ -4145,8 +4145,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;
#endif