Francois Gouget : msvcrt: Fix the spelling of a couple of TRACE() messages.

Alexandre Julliard julliard at winehq.org
Thu Nov 28 16:02:21 CST 2019


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

Author: Francois Gouget <fgouget at free.fr>
Date:   Thu Nov 28 13:28:59 2019 +0100

msvcrt: Fix the spelling of a couple of TRACE() messages.

Signed-off-by: Francois Gouget <fgouget at free.fr>
Signed-off-by: Piotr Caban <piotr at codeweavers.com>
Signed-off-by: Alexandre Julliard <julliard at winehq.org>

---

 dlls/msvcrt/except_i386.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dlls/msvcrt/except_i386.c b/dlls/msvcrt/except_i386.c
index 73a0d6a2b6..e2515c7778 100644
--- a/dlls/msvcrt/except_i386.c
+++ b/dlls/msvcrt/except_i386.c
@@ -371,7 +371,7 @@ static DWORD catch_function_nested_handler( EXCEPTION_RECORD *rec, EXCEPTION_REG
             if(TRACE_ON(seh)) {
                 TRACE("detect rethrow: exception code: %x\n", rec->ExceptionCode);
                 if(rec->ExceptionCode == CXX_EXCEPTION)
-                    TRACE("re-propage: obj: %lx, type: %lx\n",
+                    TRACE("re-propagate: obj: %lx, type: %lx\n",
                             rec->ExceptionInformation[1], rec->ExceptionInformation[2]);
             }
         }
@@ -590,7 +590,7 @@ DWORD CDECL cxx_frame_handler( PEXCEPTION_RECORD rec, cxx_exception_frame* frame
         if(TRACE_ON(seh)) {
             TRACE("detect rethrow: exception code: %x\n", rec->ExceptionCode);
             if(rec->ExceptionCode == CXX_EXCEPTION)
-                TRACE("re-propage: obj: %lx, type: %lx\n",
+                TRACE("re-propagate: obj: %lx, type: %lx\n",
                         rec->ExceptionInformation[1], rec->ExceptionInformation[2]);
         }
     }




More information about the wine-cvs mailing list