Commit 4cece0dd authored by Frédéric Delanoy's avatar Frédéric Delanoy Committed by Alexandre Julliard

crypt32: Use BOOL type where appropriate.

parent 51e3c239
......@@ -2077,7 +2077,7 @@ static BOOL CRYPT_AsnEncodeNumericString(const CERT_NAME_VALUE *value,
return ret;
}
static inline int isprintableW(WCHAR wc)
static inline BOOL isprintableW(WCHAR wc)
{
return isalnumW(wc) || isspaceW(wc) || wc == '\'' || wc == '(' ||
wc == ')' || wc == '+' || wc == ',' || wc == '-' || wc == '.' ||
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment