Module: wine
Branch: master
Commit: 4dfa8a834d895ebd2b1c3d03882a633356f361dd
URL: https://source.winehq.org/git/wine.git/?a=commit;h=4dfa8a834d895ebd2b1c3d03…
Author: Francois Gouget <fgouget(a)free.fr>
Date: Tue Dec 10 09:29:40 2019 +0100
winedbg: Fix the spelling of various messages and the README.
Signed-off-by: Francois Gouget <fgouget(a)free.fr>
Signed-off-by: Alexandre Julliard <julliard(a)winehq.org>
---
programs/winedbg/README | 2 +-
programs/winedbg/gdbproxy.c | 4 ++--
programs/winedbg/types.c | 2 +-
3 files changed, 4 insertions(+), 4 deletions(-)
diff --git a/programs/winedbg/README b/programs/winedbg/README
index e824a1c88c..66b3953bd2 100644
--- a/programs/winedbg/README
+++ b/programs/winedbg/README
@@ -1,4 +1,4 @@
- This is the core of the Wine debugger. The reverse assember
+ This is the core of the Wine debugger. The reverse assembler
was stolen from Mach more or less intact. It turns out that there are
two variables that are set differently if you are reverse assembling
16 bit code, and on the whole it seems to work.
diff --git a/programs/winedbg/gdbproxy.c b/programs/winedbg/gdbproxy.c
index 85ebc882a6..052e73b2ad 100644
--- a/programs/winedbg/gdbproxy.c
+++ b/programs/winedbg/gdbproxy.c
@@ -569,7 +569,7 @@ static void wait_for_debuggee(struct gdb_context* gdbctx)
{
if (check_for_interrupt(gdbctx)) {
if (!DebugBreakProcess(gdbctx->process->handle)) {
- ERR("Failed to break into debugee\n");
+ ERR("Failed to break into debuggee\n");
break;
}
WaitForDebugEvent(&de, INFINITE);
@@ -624,7 +624,7 @@ static void get_process_info(struct gdb_context* gdbctx, char* buffer, size_t le
case ABOVE_NORMAL_PRIORITY_CLASS: strcat(buffer, ", above normal priority"); break;
#endif
#ifdef BELOW_NORMAL_PRIORITY_CLASS
- case BELOW_NORMAL_PRIORITY_CLASS: strcat(buffer, ", below normal priotity"); break;
+ case BELOW_NORMAL_PRIORITY_CLASS: strcat(buffer, ", below normal priority"); break;
#endif
case HIGH_PRIORITY_CLASS: strcat(buffer, ", high priority"); break;
case IDLE_PRIORITY_CLASS: strcat(buffer, ", idle priority"); break;
diff --git a/programs/winedbg/types.c b/programs/winedbg/types.c
index 696a9fd48a..019554ad1b 100644
--- a/programs/winedbg/types.c
+++ b/programs/winedbg/types.c
@@ -168,7 +168,7 @@ BOOL types_store_value(struct dbg_lvalue* lvalue_to, const struct dbg_lvalue* lv
if (!types_get_info(&lvalue_to->type, TI_GET_LENGTH, &size)) return FALSE;
if (sizeof(val) < size)
{
- dbg_printf("Unsufficient size\n");
+ dbg_printf("Insufficient size\n");
return FALSE;
}
/* FIXME: should support floats as well */