From d1f99ac8029b599da11f531720ce55191fa63da6 Mon Sep 17 00:00:00 2001 From: robert Date: Thu, 22 Sep 2011 23:47:38 +0000 Subject: fix two signed/unsigned comparsions --- usr.sbin/nginx/src/pcre/pcre_compile.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'usr.sbin/nginx/src/pcre/pcre_compile.c') diff --git a/usr.sbin/nginx/src/pcre/pcre_compile.c b/usr.sbin/nginx/src/pcre/pcre_compile.c index e72869696f6..9fe396ca99d 100644 --- a/usr.sbin/nginx/src/pcre/pcre_compile.c +++ b/usr.sbin/nginx/src/pcre/pcre_compile.c @@ -4025,7 +4025,7 @@ for (;; ptr++) if ((options & PCRE_CASELESS) != 0) { unsigned int othercase; - if ((othercase = UCD_OTHERCASE(c)) != c) + if ((othercase = UCD_OTHERCASE(c)) != (unsigned int)c) { *class_utf8data++ = XCL_SINGLE; class_utf8data += _pcre_ord2utf8(othercase, class_utf8data); -- cgit v1.2.3-59-g8ed1b