Francois Gouget : mfplat: Fix the spelling of a comment.

Alexandre Julliard julliard at winehq.org
Thu May 6 14:56:19 CDT 2021


Module: wine
Branch: master
Commit: aec8bc3cba63727a970ef186bfe6ff891cede1c5
URL:    https://source.winehq.org/git/wine.git/?a=commit;h=aec8bc3cba63727a970ef186bfe6ff891cede1c5

Author: Francois Gouget <fgouget at free.fr>
Date:   Thu May  6 19:13:48 2021 +0200

mfplat: Fix the spelling of a comment.

Signed-off-by: Francois Gouget <fgouget at free.fr>
Signed-off-by: Alexandre Julliard <julliard at winehq.org>

---

 dlls/mfplat/main.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dlls/mfplat/main.c b/dlls/mfplat/main.c
index f1d0aaad94d..c8d74b5d42c 100644
--- a/dlls/mfplat/main.c
+++ b/dlls/mfplat/main.c
@@ -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;




More information about the wine-cvs mailing list