Module: wine
Branch: master
Commit: 708c43a2ef71d28e33a07e6d368e12f4cf0c91a2
URL: http://source.winehq.org/git/wine.git/?a=commit;h=708c43a2ef71d28e33a07e6d3…
Author: max(a)mtew.isa-geek.net <max(a)mtew.isa-geek.net>
Date: Thu Feb 3 13:43:21 2011 -0500
ntdll: Correct 'b' parameter descriptions for _alldiv and _aulldiv.
---
dlls/ntdll/large_int.c | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/dlls/ntdll/large_int.c b/dlls/ntdll/large_int.c
index e2b0734..cb98bae 100644
--- a/dlls/ntdll/large_int.c
+++ b/dlls/ntdll/large_int.c
@@ -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.