tools/winedump: sign compare fixes

Alexandre Julliard julliard at winehq.org
Fri May 8 05:26:45 CDT 2009


Austin English <austinenglish at gmail.com> writes:

> -static const char *debugstr_wn(const WCHAR *wstr, int n)
> +static const char *debugstr_wn(const WCHAR *wstr, uint n)
>  {
>      static char buf[80];
>      char *p;
> -    int i;
> +    uint i;

uint is not a standard type. Use "unsigned int" instead.

-- 
Alexandre Julliard
julliard at winehq.org



More information about the wine-devel mailing list