Austin English <[email protected]> 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
[email protected]


Reply via email to