mirror of
https://github.com/reactos/reactos.git
synced 2025-02-22 16:36:33 +00:00
[VFDLIB] Fix preprocessor directive compilation error when being used inside a macro expansion on MSVC.
This commit is contained in:
parent
e7b2aa65d2
commit
acabbb7b85
1 changed files with 4 additions and 3 deletions
|
@ -2928,13 +2928,14 @@ 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));
|
||||
fixedinfo->dwFileOS, VOS_NT_WINDOWS32, fixedinfo->dwFileType, VFT_DRV,
|
||||
fixedinfo->dwFileSubtype, VFT2_DRV_SYSTEM));
|
||||
#endif
|
||||
|
||||
ret = ERROR_BAD_DRIVER;
|
||||
|
|
Loading…
Reference in a new issue