winedump: Sign compare fixes.

This commit is contained in:
Austin English 2009-05-08 06:10:52 -05:00 committed by Alexandre Julliard
parent 8b7269e7e6
commit 285572fd57
2 changed files with 3 additions and 3 deletions

View File

@ -36,11 +36,11 @@
#include "winbase.h"
#include "wingdi.h"
static const char *debugstr_wn(const WCHAR *wstr, int n)
static const char *debugstr_wn(const WCHAR *wstr, unsigned int n)
{
static char buf[80];
char *p;
int i;
unsigned int i;
if (!wstr) return "(null)";

View File

@ -375,7 +375,7 @@ static int dump_raw_block(const DATABLOCK_HEADER* bhdr)
data_size=bhdr->cbSize-sizeof(*bhdr);
if (data_size > 0)
{
unsigned int i;
int i;
const unsigned char *data;
printf("data = ");