mirror of
https://github.com/reactos/reactos.git
synced 2025-02-22 08:25:03 +00:00
[NFS41_NP] Attempt to fix MSVC build
This commit is contained in:
parent
45b543202d
commit
2ddebe3291
1 changed files with 2 additions and 1 deletions
|
@ -649,10 +649,11 @@ NPCancelConnection(
|
|||
|
||||
DbgP((TEXT("NPCancelConnection: Name %S EntryName %S\n"),
|
||||
lpName,pNetResource->LocalName));
|
||||
DbgP((TEXT("NPCancelConnection: Name Length %d Entry Name Length %d\n"),
|
||||
#ifndef __REACTOS__
|
||||
DbgP((TEXT("NPCancelConnection: Name Length %d Entry Name Length %d\n"),
|
||||
pNetResource->LocalNameLength,pNetResource->LocalName));
|
||||
#else
|
||||
DbgP((TEXT("NPCancelConnection: Name Length %d Entry Name Length %d\n"),
|
||||
(wcslen(lpName) + 1) * sizeof(WCHAR), pNetResource->LocalNameLength));
|
||||
#endif
|
||||
|
||||
|
|
Loading…
Reference in a new issue