crypt32: Use BOOL type where appropriate.
This commit is contained in:
parent
51e3c2397c
commit
4cece0dd43
|
@ -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 == '.' ||
|
||||||
|
|
Loading…
Reference in New Issue