[0.4.9][BTRFS] It is _WIN32_WINNT, not WIN32_WINNT CORE-12589 CORE-12580

This is *no* functional change: I verified with a #pragma message "test"
locally within that block that the compilers output does not change
before and after those changes.
The binary also do not change in size.
After this commit no such issue remains in releases/0.4.9

[BTRFS] It is _WIN32_WINNT, not WIN32_WINNT CORE-12589
This is a partial port of:
0.4.10-dev-36-g c7806a6b29 CORE-12589 'drivers/filesystems/btrfs/fsctl.c: 1 _WIN32_WINNT is misspelled as WIN32_WINNT'
This commit is contained in:
Joachim Henze 2024-02-25 07:51:46 +01:00
parent 589f4cf019
commit 57902eae85

View file

@ -5065,7 +5065,7 @@ NTSTATUS fsctl_request(PDEVICE_OBJECT DeviceObject, PIRP* Pirp, UINT32 type) {
Status = STATUS_INVALID_DEVICE_REQUEST;
break;
#if WIN32_WINNT >= 0x0600
#if _WIN32_WINNT >= 0x0600
case FSCTL_MAKE_MEDIA_COMPATIBLE:
WARN("STUB: FSCTL_MAKE_MEDIA_COMPATIBLE\n");
Status = STATUS_INVALID_DEVICE_REQUEST;