ntdll: Correct 'b' parameter descriptions for _alldiv and _aulldiv.

This commit is contained in:
max@mtew.isa-geek.net 2011-02-03 13:43:21 -05:00 committed by Alexandre Julliard
parent 7a9b389465
commit 708c43a2ef
1 changed files with 2 additions and 2 deletions

View File

@ -531,7 +531,7 @@ NTSTATUS WINAPI RtlInt64ToUnicodeString(
*
* PARAMS
* a [I] Initial number.
* b [I] Number to multiply a by.
* b [I] Number to divide a by.
*
* RETURNS
* The dividend of a and b.
@ -585,7 +585,7 @@ LONGLONG WINAPI _allrem( LONGLONG a, LONGLONG b )
*
* PARAMS
* a [I] Initial number.
* b [I] Number to multiply a by.
* b [I] Number to divide a by.
*
* RETURNS
* The dividend of a and b.