winedbg: Adjust the parameters of the backend read/write routines to
match those of ReadProcessMemory/WriteProcessMemory, since those are
the ones actually used.
diff --git a/programs/winedbg/be_i386.c b/programs/winedbg/be_i386.c
index c7521fe..e82216e 100644
--- a/programs/winedbg/be_i386.c
+++ b/programs/winedbg/be_i386.c
@@ -467,7 +467,7 @@
void* addr, unsigned long* val, unsigned size)
{
unsigned char ch;
- unsigned long sz;
+ SIZE_T sz;
unsigned long* pr;
int reg;
unsigned long bits;
@@ -517,7 +517,7 @@
CONTEXT* ctx, enum be_xpoint_type type,
void* addr, unsigned long val, unsigned size)
{
- unsigned long sz;
+ SIZE_T sz;
unsigned char ch;
switch (type)