Michael Stefaniuc : dbghelp: Fix the spelling of a parameter.

Alexandre Julliard julliard at winehq.org
Tue Jun 4 16:28:14 CDT 2019


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

Author: Michael Stefaniuc <mstefani at winehq.org>
Date:   Tue Jun  4 20:28:21 2019 +0200

dbghelp: Fix the spelling of a parameter.

Signed-off-by: Michael Stefaniuc <mstefani at winehq.org>
Signed-off-by: Alexandre Julliard <julliard at winehq.org>

---

 dlls/dbghelp/module.c | 11 +++++------
 1 file changed, 5 insertions(+), 6 deletions(-)

diff --git a/dlls/dbghelp/module.c b/dlls/dbghelp/module.c
index cfbb586..d9d8417 100644
--- a/dlls/dbghelp/module.c
+++ b/dlls/dbghelp/module.c
@@ -334,16 +334,15 @@ static struct module* module_get_container(const struct process* pcs,
  *           module_get_containee
  *
  */
-struct module* module_get_containee(const struct process* pcs, 
-                                    const struct module* outter)
+struct module* module_get_containee(const struct process* pcs, const struct module* outer)
 {
     struct module*      module;
-     
+
     for (module = pcs->lmodules; module; module = module->next)
     {
-        if (module != outter &&
-            outter->module.BaseOfImage <= module->module.BaseOfImage &&
-            outter->module.BaseOfImage + outter->module.ImageSize >=
+        if (module != outer &&
+            outer->module.BaseOfImage <= module->module.BaseOfImage &&
+            outer->module.BaseOfImage + outer->module.ImageSize >=
             module->module.BaseOfImage + module->module.ImageSize)
             return module;
     }




More information about the wine-cvs mailing list