[VFDLIB] Fix preprocessor directive compilation error when being used inside a macro expansion on MSVC.

This commit is contained in:
Hermès Bélusca-Maïto 2017-12-16 22:48:11 +01:00
parent e7b2aa65d2
commit acabbb7b85
No known key found for this signature in database
GPG key ID: 3B2539C65E7B93D0

View file

@ -2928,10 +2928,11 @@ DWORD WINAPI VfdCheckDriverFile(
fixedinfo->dwFileType != VFT_DRV ||
fixedinfo->dwFileSubtype != VFT2_DRV_SYSTEM) {
VFDTRACE(0,
#ifndef __REACTOS__
VFDTRACE(0,
(FUNC ": Invalid file type flags\n"));
#else
VFDTRACE(0,
(FUNC ": Invalid file type flags. os: %x (%x), type: %x (%x), subtype: %x (%x)\n",
fixedinfo->dwFileOS, VOS_NT_WINDOWS32, fixedinfo->dwFileType, VFT_DRV,
fixedinfo->dwFileSubtype, VFT2_DRV_SYSTEM));