ntdll: Correct 'b' parameter descriptions for _alldiv and _aulldiv.
This commit is contained in:
parent
7a9b389465
commit
708c43a2ef
|
@ -531,7 +531,7 @@ NTSTATUS WINAPI RtlInt64ToUnicodeString(
|
||||||
*
|
*
|
||||||
* PARAMS
|
* PARAMS
|
||||||
* a [I] Initial number.
|
* a [I] Initial number.
|
||||||
* b [I] Number to multiply a by.
|
* b [I] Number to divide a by.
|
||||||
*
|
*
|
||||||
* RETURNS
|
* RETURNS
|
||||||
* The dividend of a and b.
|
* The dividend of a and b.
|
||||||
|
@ -585,7 +585,7 @@ LONGLONG WINAPI _allrem( LONGLONG a, LONGLONG b )
|
||||||
*
|
*
|
||||||
* PARAMS
|
* PARAMS
|
||||||
* a [I] Initial number.
|
* a [I] Initial number.
|
||||||
* b [I] Number to multiply a by.
|
* b [I] Number to divide a by.
|
||||||
*
|
*
|
||||||
* RETURNS
|
* RETURNS
|
||||||
* The dividend of a and b.
|
* The dividend of a and b.
|
||||||
|
|
Loading…
Reference in New Issue