mirror of
git://source.winehq.org/git/wine.git
synced 2024-10-31 11:43:31 +00:00
us->Length is in bytes.
This commit is contained in:
parent
9447958bc1
commit
4c903ea4b8
1 changed files with 1 additions and 3 deletions
|
@ -44,7 +44,7 @@ void dump_ObjectAttributes (const OBJECT_ATTRIBUTES *oa)
|
|||
LPCSTR debugstr_us( const UNICODE_STRING *us )
|
||||
{
|
||||
if (!us) return "<null>";
|
||||
return debugstr_wn(us->Buffer, us->Length);
|
||||
return debugstr_wn(us->Buffer, us->Length / sizeof(WCHAR));
|
||||
}
|
||||
|
||||
/*********************************************************************
|
||||
|
@ -136,5 +136,3 @@ double __cdecl NTDLL__CIpow(double x,double y)
|
|||
return pow(x,y);
|
||||
}
|
||||
#endif /* !defined(__i386__) */
|
||||
|
||||
|
||||
|
|
Loading…
Reference in a new issue