=?UTF-8?Q?Fr=C3=A9d=C3=A9ric=20Delanoy=20?=: crypt32: Use BOOL type where appropriate.

Alexandre Julliard julliard at winehq.org
Thu Jan 9 12:52:49 CST 2014


Module: wine
Branch: master
Commit: 4cece0dd43c2fb0e44fafd6e85dfcbae31bccbd9
URL:    http://source.winehq.org/git/wine.git/?a=commit;h=4cece0dd43c2fb0e44fafd6e85dfcbae31bccbd9

Author: Frédéric Delanoy <frederic.delanoy at gmail.com>
Date:   Wed Jan  8 03:37:51 2014 +0100

crypt32: Use BOOL type where appropriate.

---

 dlls/crypt32/encode.c |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dlls/crypt32/encode.c b/dlls/crypt32/encode.c
index 7590012..29b3a66 100644
--- a/dlls/crypt32/encode.c
+++ b/dlls/crypt32/encode.c
@@ -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 == '.' ||




More information about the wine-cvs mailing list