Commit aec8bc3c authored by Francois Gouget's avatar Francois Gouget Committed by Alexandre Julliard

mfplat: Fix the spelling of a comment.

parent 088045be
......@@ -9034,7 +9034,7 @@ static void llmult128(ULARGE_INTEGER *c1, ULARGE_INTEGER *c0, LONGLONG val, LONG
b0.QuadPart = (ULONGLONG)v.HighPart * n.LowPart;
/* add the high word of a0 to the low words of a1 and b0 using c1 as
* scrach space to capture the carry. the low word of the result becomes
* scratch space to capture the carry. the low word of the result becomes
* the final high word of c0 */
c1->QuadPart = (ULONGLONG)c0->HighPart + a1.LowPart + b0.LowPart;
c0->HighPart = c1->LowPart;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment