crypt32: Use BOOL type where appropriate.

This commit is contained in:
Frédéric Delanoy 2014-01-08 03:37:51 +01:00 committed by Alexandre Julliard
parent 51e3c2397c
commit 4cece0dd43
1 changed files with 1 additions and 1 deletions

View File

@ -2077,7 +2077,7 @@ static BOOL CRYPT_AsnEncodeNumericString(const CERT_NAME_VALUE *value,
return ret; return ret;
} }
static inline int isprintableW(WCHAR wc) static inline BOOL isprintableW(WCHAR wc)
{ {
return isalnumW(wc) || isspaceW(wc) || wc == '\'' || wc == '(' || return isalnumW(wc) || isspaceW(wc) || wc == '\'' || wc == '(' ||
wc == ')' || wc == '+' || wc == ',' || wc == '-' || wc == '.' || wc == ')' || wc == '+' || wc == ',' || wc == '-' || wc == '.' ||