William A. Rowe, Jr. wrote:
Remaining noise after these two are applied to trunk are listed below.
It's looking awfully sloppy - and prone to optimization bugs.

URL: http://svn.apache.org/viewvc?rev=605073&view=rev
Log:
Two type mismatch fixes previously committed to trunk\
and forgotten from backports

sorry - trimmed the citation on this one, we already discussed on list.

--- httpd/httpd/branches/2.2.x/modules/http/http_etag.c (original)
+++ httpd/httpd/branches/2.2.x/modules/http/http_etag.c Mon Dec 17 19:46:48 2007
@@ -37,7 +37,8 @@
     int printing = 0;
     int shift = sizeof(apr_uint64_t) * 8 - 4;
     do {
-        unsigned short next_digit = ((u >> shift) & (apr_uint64_t)0xf);
+        unsigned short next_digit = (unsigned short)
+                                    ((u >> shift) & (apr_uint64_t)0xf);

and sorry - ignore this one, it's a side effect of an OS upgrade here,
time to rebuild libaprutil.

/usr/bin/ld: warning: libexpat.so.0, needed by /usr/local/apr1.2/lib/libaprutil-1.so, may conflict with libexpat.so.1


Reply via email to