[NFS41_NP] Fix debug print in case of connection cancel failure

This commit is contained in:
Pierre Schweitzer 2017-11-18 21:25:00 +01:00
parent 56a19b1439
commit 764b2b6ef7
No known key found for this signature in database
GPG key ID: 7545556C3D585B0B

View file

@ -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
}
}