mirror of
https://github.com/reactos/reactos.git
synced 2024-11-04 22:00:55 +00:00
[NFS41_NP] Fix debug print in case of connection cancel failure
This commit is contained in:
parent
56a19b1439
commit
764b2b6ef7
1 changed files with 4 additions and 0 deletions
|
@ -650,7 +650,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__
|
||||
pNetResource->LocalNameLength,pNetResource->LocalName));
|
||||
#else
|
||||
(wcslen(lpName) + 1) * sizeof(WCHAR), pNetResource->LocalNameLength));
|
||||
#endif
|
||||
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue